Can you help me with possibly a simple question?
I pushed the WP Staging version of a website to the existing website and found the links still had “/wordpress/page-id-etc” after it. I changed the permalinks but it still showed ‘wordpress’ in the links. Do I need to create redirects for these or should the links of changed once they came over in the push?
I’m not a developer as I mainly work in SEO so not sure on the protocol of links and pushing a staging site to the existing WP one.
Thank you.
]]>Upon reviewing the admin toolbar generated by your plugin (frontend), I noticed the following:
To assist, the following file is affected:
/wp-content/plugins/wpdiscuz/class.WpDiscuzCore.php (Lines 2608-2625)
Also, until you decide to update your plugin, the code snippet provided below can be used to accomplish the same. Click here for result.
Cheers!
Code Snippet: (Change Admin Toolbar Sub-Menu Links)
function change_admin_toolbar_sub_links_frontend_wpdiscuz() {
if ( is_admin_bar_showing() && current_user_can('administrator')) {
global $wp_admin_bar;
$wp_admin_bar->remove_node('purgeAllCaches');
$args = array(
'parent' => 'wpdiscuz',
'id' => 'purgeAllCaches',
'title' => esc_html__( 'Clear Cache', 'wpdiscuz' ),
'href' => esc_url_raw( wp_nonce_url( admin_url( 'admin-post.php?action=purgeAllCaches' ), 'purgeAllCaches' ) ),
'meta' => [ 'title' => esc_html__( 'Clear Cache', 'wpdiscuz' ) ],
);
$wp_admin_bar->add_node($args);
global $wp_admin_bar;
$wp_admin_bar->remove_node('purgePostCaches');
global $post;
if ( ! empty( $post->ID ) ) {
$args = array(
'parent' => 'wpdiscuz',
'id' => 'purgePostCaches',
'title' => esc_html__( 'Clear Cache of this Page', 'wpdiscuz' ),
'href' => esc_url_raw( wp_nonce_url( admin_url( 'admin-post.php?action=purgePostCaches&post_id=' . $post->ID ), "purgePostCaches" ) ),
'meta' => [ 'title' => esc_html__( 'Clear Cache of this Page', 'wpdiscuz' ) ],
);}
$wp_admin_bar->add_node($args);
}}
add_action('wp_before_admin_bar_render', 'change_admin_toolbar_sub_links_frontend_wpdiscuz', 999 );
]]>Can you guys kindly update your plugin to make sure external links are opened in a new tab?
For example, your WP Dashboard widget links open in the same tab. They shouldn’t.
Thank you!
]]>[title]
tag. Currently, when a user clicks on the file title, it no longer redirects to the single file page, as intended.
However, we would like to enhance this functionality by making the file titles directly initiate the download when clicked, instead of opening any page. We need assistance in configuring the template to make the file title a direct download link.
Below is the full code from the template we have edited so far:
<!-- WPDM Link Template: Default Template -->
<div class="link-template-default card mb-2">
<div class="card-body">
<div class="media">
<div class="mr-3 img-48">[icon]</div>
<div class="media-body">
<h3 class="package-title">[title]</h3>
<div class="text-muted text-small"><i class="fas fa-copy"></i> [file_count] [txt=file(s)] <i class="fas fa-hdd ml-3"></i> [file_size]</div>
</div>
<div class="ml-3">
[download_link]
</div>
</div>
</div>
</div>
Is there a shortcode or method to achieve the following functionality in WP Download Manager?
We want the file title to directly initiate the download when clicked. If the user is not logged in, clicking the file title should redirect them to the login page instead of showing the single file page.
Could you please let us know if there is a built-in shortcode or a recommended approach to implement this?
Thank you!
]]>I’ve just installed the plugin, added associate IDs for UK/US. I’ve gone to tools and enabled the link converter. Will this automatically go through posts and update the links with my associates ID?
]]>I tried adding a privacy link to my footer, but it does not come up as clickable? Can you advise? Thanks
Kindly Luna
]]>