<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									&#039;More discussion »&#039; link all over the website - wpForo Blog Cross Posting				            </title>
            <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/</link>
            <description>WordPress Plugins Support Forum</description>
            <language>en-US</language>
            <lastBuildDate>Fri, 17 Jul 2026 05:08:16 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: &#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38422</link>
                        <pubDate>Mon, 26 Feb 2024 16:46:12 +0000</pubDate>
                        <description><![CDATA[Thanks for the reply and effort!]]></description>
                        <content:encoded><![CDATA[<p>Thanks for the reply and effort!</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>SneakerForum</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38422</guid>
                    </item>
				                    <item>
                        <title>RE: &#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38417</link>
                        <pubDate>Sat, 24 Feb 2024 10:57:22 +0000</pubDate>
                        <description><![CDATA[@sneakerforum,
Somehow the the_content function is called multiple times, resulting in duplicate links being displayed.To resolve this issue you can use one of the options provided below.
...]]></description>
                        <content:encoded><![CDATA[<p>@sneakerforum,</p>
<p>Somehow the <em>the_content</em> function is called multiple times, resulting in duplicate links being displayed.<br /><br />To resolve this issue you can use one of the options provided below.</p>
<p><span style="color: #ff0000;font-size: 14pt"><em><strong>Option 1: </strong></em></span></p>
<p>1. Navigate to the <em>Dashboard &gt; wpForo &gt; settings &gt; "Forum - Blog" Cross Posting</em>  admin page and disable the "Display Cross-posted Topic Link on Blog Post" option.</p>
<p>2. Insert the following code into the active theme's functions.php file:</p>
<pre contenteditable="false">add_action( 'wp_head', 'twentynineteen_colors_css_wrap' );

add_shortcode('wpf_crossposting_link', 'wpf_display_crosspost_link');
function wpf_display_crosspost_link() {
    if(!function_exists('WPF') || !class_exists('wpForoCrossPosting')){
        return;
    }
    global $post;
    $content = '';
    $postID   = $post-&gt;ID;
    $boardids = get_post_meta($postID, '_wpforo_boardids', true);
    if (!$boardids) {
        $boardids = [];
        $boardids[] = 0;
    }

    foreach ( $boardids as $boardid ) {
        $board = WPF()-&gt;board-&gt;get_board( intval( $boardid ) );
        if ( ! $board ) {
            continue;
        }

        WPF()-&gt;change_board( $boardid );

        if ( ! wpforo_is_module_enabled( WPFOROCROSSPOST_FOLDER ) ) {
            continue;
        }

        $prefix = WPF()-&gt;generate_prefix( $boardid );

        if (is_singular() ) {

            $topicID                = get_post_meta( $postID,
                '_' . $prefix . 'crossposting_topicid',
                true );
            $isCrossPostingDisabled = get_post_meta( $postID,
                '_' . $prefix . 'crossposting_disabled',
                true );
            if ( $topicID &amp;&amp; ! $isCrossPostingDisabled ) {
                $linkText = wpforo_phrase( 'This article is also published as a forum topic here', false );
                $topicURL = wpforo_topic( $topicID, 'url' );
                $content  = '&lt;div class="wpfcp-article-info"&gt;';
                $content  .= '&lt;a href="' . esc_url( (string) $topicURL ) . '"&gt;' . $linkText . ' &amp;raquo;&lt;/a&gt;';
                $content  .= '&lt;/div&gt;&lt;div class="wpfcpcb"&gt;&lt;/div&gt;';
            }

            return $content;
        }
    }
}</pre>
<p>3. Use the shortcode within the post content:</p>
<pre contenteditable="false"></pre>
<p><span style="font-size: 14pt;color: #ff0000"><em><strong>Option 2:</strong></em></span></p>
<p>The CSS code can be used as well:</p>
<pre contenteditable="false">.fusion-tb-footer.fusion-footer .wpfcp-article-info, #content .wpfcp-article-info {display:none;}
#content .post-content .fusion-content-tb .wpfcp-article-info{ display:block !important;}
</pre>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38417</guid>
                    </item>
				                    <item>
                        <title>RE: &#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38416</link>
                        <pubDate>Sat, 24 Feb 2024 08:52:08 +0000</pubDate>
                        <description><![CDATA[Found two more buttons at the bottom of the article/post (above and underneath the footer).Can you remove these also?]]></description>
                        <content:encoded><![CDATA[<p>Found two more buttons at the bottom of the article/post (above and underneath the footer).<br />Can you remove these also?</p>
<p>https://www.sneaker-forum.nl/2024/02/air-jordan-1-high-og-wmns-dusted-clay-fq2941-200/</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>SneakerForum</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38416</guid>
                    </item>
				                    <item>
                        <title>RE: &#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38412</link>
                        <pubDate>Fri, 23 Feb 2024 18:27:29 +0000</pubDate>
                        <description><![CDATA[Thanks!]]></description>
                        <content:encoded><![CDATA[
<p>@sneakerforum </p>
<p>use this code instead of the above</p>
<pre contenteditable="false">.fusion-tb-header .wpfcp-article-info,
.fusion-post-cards .wpfcp-article-info,
.fusion-page-title-bar.fusion-tb-page-title-bar .wpfcp-article-info {display: none}</pre>
<p></p>
<p>Thanks! </p>
<p> </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>SneakerForum</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38412</guid>
                    </item>
				                    <item>
                        <title>RE: &#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38393</link>
                        <pubDate>Mon, 19 Feb 2024 15:25:54 +0000</pubDate>
                        <description><![CDATA[@sneakerforum 
use this code instead of the above
.fusion-tb-header .wpfcp-article-info,
.fusion-post-cards .wpfcp-article-info,
.fusion-page-title-bar.fusion-tb-page-title-bar .wpfcp-ar...]]></description>
                        <content:encoded><![CDATA[<p>@sneakerforum </p>
<p>use this code instead of the above</p>
<pre contenteditable="false">.fusion-tb-header .wpfcp-article-info,
.fusion-post-cards .wpfcp-article-info,
.fusion-page-title-bar.fusion-tb-page-title-bar .wpfcp-article-info {display: none}</pre>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>Tutrix</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38393</guid>
                    </item>
				                    <item>
                        <title>RE: &#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38392</link>
                        <pubDate>Mon, 19 Feb 2024 15:14:05 +0000</pubDate>
                        <description><![CDATA[Great! That does the job. Is there also a code for the  &#039;This article is also published as a forum topic here »&#039; button on the frontpage?]]></description>
                        <content:encoded><![CDATA[<p>Great! That does the job. Is there also a code for the <span> 'This article is also published as a forum topic here »' button on the frontpage?</span></p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>SneakerForum</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38392</guid>
                    </item>
				                    <item>
                        <title>RE: &#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38390</link>
                        <pubDate>Mon, 19 Feb 2024 14:04:27 +0000</pubDate>
                        <description><![CDATA[Hi @sneakerforum 
add it to custom css
.fusion-tb-header .wpfcp-article-info, 
.fusion-page-title-bar.fusion-tb-page-title-bar .wpfcp-article-info {display: none}
Dashboard &gt; wpForo &amp;...]]></description>
                        <content:encoded><![CDATA[<p>Hi @sneakerforum </p>
<p>add it to custom css</p>
<pre contenteditable="false">.fusion-tb-header .wpfcp-article-info, 
.fusion-page-title-bar.fusion-tb-page-title-bar .wpfcp-article-info {display: none}</pre>
<p>Dashboard &gt; wpForo &gt; Settings &gt; Colors &amp; Styles &gt; Custom CSS</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>Tutrix</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38390</guid>
                    </item>
				                    <item>
                        <title>RE: &#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38382</link>
                        <pubDate>Sat, 17 Feb 2024 16:22:17 +0000</pubDate>
                        <description><![CDATA[Home - Sneaker Forum (sneaker-forum.nl)
Here you can see the &#039;This article is also published as a forum topic here »&#039; underneath the post on the homepage.
This is the post I cross-posted w...]]></description>
                        <content:encoded><![CDATA[
<p>Could you please provide the URL where we can see the issue?  </p>
<p></p>
<p><a href="https://www.sneaker-forum.nl/">Home - Sneaker Forum (sneaker-forum.nl)</a></p>
<p>Here you can see the 'This article is also published as a forum topic here »' underneath the post on the homepage.</p>
<p>https://www.sneaker-forum.nl/2023/12/nike-dunk-mid-panda-fq8784-100/</p>
<p>This is the post I cross-posted with the forum. The button with 'This article is also published as a forum topic here »' is everywhere on the page. </p>
<p>The only place I want this button is in the right corner underneath the post.</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>SneakerForum</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38382</guid>
                    </item>
				                    <item>
                        <title>RE: &#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38372</link>
                        <pubDate>Fri, 16 Feb 2024 11:41:19 +0000</pubDate>
                        <description><![CDATA[Could you please provide the URL where we can see the issue?]]></description>
                        <content:encoded><![CDATA[<p>Could you please provide the URL where we can see the issue?  </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>Astghik</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38372</guid>
                    </item>
				                    <item>
                        <title>&#039;More discussion »&#039; link all over the website</title>
                        <link>https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38369</link>
                        <pubDate>Thu, 15 Feb 2024 13:37:29 +0000</pubDate>
                        <description><![CDATA[Hello,I just installed wpForo Blog Cross Posting and it&#039;s working fine. However when I select the option Display Cross-posted Topic Link on Blog Post, it will display this link a multiple ti...]]></description>
                        <content:encoded><![CDATA[<p>Hello,<br /><br />I just installed wpForo Blog Cross Posting and it's working fine. However when I select the option <span>Display Cross-posted Topic Link on Blog Post, it will display this link a multiple times across the website.<br /><br />I'm using Avada theme and Avada builder. And it seems to be showing up at the end of every container.<br />The website is still in maintenance mode, so it difficult to share a direct link so I made a screenshot. </span></p>
7138
<p>You can see two 'More discussion »' links above the post, the correct one underneath the gallery and way down to the bottom of the page another one.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-blog-cross-posting/">wpForo Blog Cross Posting</category>                        <dc:creator>SneakerForum</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-blog-cross-posting/more-discussion-link-all-over-the-website/#post-38369</guid>
                    </item>
							        </channel>
        </rss>
		