Forum Replies Created
Awesome. You’re welcome!
Just play around with the CSS file otherwise it’s easier to help if am provided with the website logins so that I can help better.
Use this CSS class taxonomy-description to format the text.
To add a slider to the category page, add the slider embed code just right above this code the_archive_description( '<div class="taxonomy-description">', '</div>' which you added a little while ago.
So if the slider is Slider Revolution, the code embed code should look like this <?php add_revslider('category_slider'); ?> where category_slider is your slider alias, replace the slider alias with yours.
Paste this code the_archive_description( '<div class="taxonomy-description">', '</div>' ); between these two if statements below;
if(isset($tbgrid)){
list($sr, $ob, $od, $bt) = explode(",", $tbgrid);
}
and
if(is_post_type_archive()) $toolbar = 1;
Your code should be looking like this below;
if(isset($tbgrid)){
list($sr, $ob, $od, $bt) = explode(",", $tbgrid);
}
the_archive_description( '<div class="taxonomy-description">', '</div>' );
if(is_post_type_archive()) $toolbar = 1;
Oliver,
My apologies for the wrong update. Please open the toolbar.php file in download-manager/tpls/shortcodes/toolbar.php.
Add this code to the_archive_description( '<div class="taxonomy-description">', '</div>' ); to the toolbar.php file right above the //Show toolbar on post type archive comment.
Hoping this makes sense and let me know when it works.
I got help by adding the code below to the class.Package.php file;
the_archive_description( ‘<div class=”taxonomy-description”>’, ‘</div>’ );
Thank you !!!
This has worked for me. Thanks a lot for your kind help.
Let’s say all publications uploaded by a contributor or an author, how do I display all packages uploaded by that user?
This shortcode [pdf_gallery] brings the document preview. I want to make a button (view button) whereby when I click the button, it opens up the document just like the view button on this page https://demo.wpdownloadmanager.com/wpdmpro/download/030-pdf/
-
This reply was modified 5 years, 4 months ago by
Joe Geoffrey.
Hello, thanks for your response.
Here is the URL to a sample document http://hostalitecloud.com/eprc/download/the-uganda-economy-today-october-december-2019/
I want to show the view button like it’s shown here https://demo.wpdownloadmanager.com/wpdmpro/download/030-pdf/
-
This reply was modified 5 years, 4 months ago by
Joe Geoffrey.