Forum Replies Created
okay now. I’ve updated the flow:
https://creeksidecontrols.com/download/dx-819-0/
May I try reinstalling the plugin and changing the theme temporarily?
May you please give me the URL with issue.
Okay now, had to disable bootstrap js from wpdm user interface settings.
Hi.
We have recoded wp pro membership from ground, update is coming within next week, but I shall set it up on your site before that.
Hi,
Extremely sorry for your trouble, please delete wpdm pro and install it again. There was a minor packaging issue with the last update of wpdm and we had to reupload it again.
Enable archive page from from settings, that will add “Downloads” archive link with your breadcrumb.
Yes, when you use ‘Do not apply’, then it uses a generatepress template. But when you are using a link template, then wpdm creates a category page template dynamically using theme components/template-parts and due to that reason, the title is missed there, but you may follow the following doc the create category page template properly for your theme.
However, to show both title and description with the global or custom template, you need to add the following code at the end of your theme’s functions.php:
add_action("wpdm_before_category_page_content", function ($cat){
?>
<h2><?php echo $cat->name; ?></h2>
<p><?php echo $cat->description; ?></p>
<?php
});
—–
Looks like you already have done that :).
Default category pages are mostly controlled from the theme, and most themes show category title by default. But, as generatepress is not showing category title for default category page when using custom template, you can add the following code at the end of your theme’s functions.php to show the title:
add_action("wpdm_before_category_page_content", function ($cat){
?><h2><?php echo $cat->name; ?></h2><?php
});
Alternatively, you can use category shortcode or GB block on WordPress statics pages, please check:
https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/
Sorry for the delays, we are also adding a major feature, AI CHAT ( using Dialogflow AI API ). Please allow us another week.
Hi,
I was trying to update to the latest version ( 5.1.2 – released today ), but I could upload plugin due to max upload file size limit ( 2MB ), please update the plugin. Now you can use the custom template for the category pages. In some themes, if you don’t see category title, use the following code:
add_action("wpdm_before_category_page_content", function ($cat){
?><h2><?php echo $cat->name; ?></h2><?php
});
I’m checking those points and released a new update within the next 72 hours :).
Not yet, but we are almost ready, certainly will be released within this week.

