Forum Replies Created
It is a PHP serialized object, an object serialized with serialize() function, you can see more on doc here, http://php.net/manual/en/function.serialize.php
thanks
Please, give your temporary wp-admin login details in a private reply for checking the issue.
Thanks
Yes, thus you may also make titles with the package titles
thanks
Ok, glad to hear this,
Thanks
I think it may require some customization, you may please knock here, https://www.wpdownloadmanager.com/user-dashboard/?udb_page=upgrade
thanks
please check now, “Prev” and “Next” buttons are not in download packages, I have created single-wpdmpro.php in your theme and adjusted some codes there
thanks
Are these download packages title or other pages links?
if you have fewer download packages, you may update from wp_postmeta table the __wpdm_access meta key, otherwise you may use this add-on too, https://www.wpdownloadmanager.com/download/wpdm-default-values/
thanks
you are welcome,
thanks
you need this add-on, https://www.wpdownloadmanager.com/download/advanced-tinymce-button/
thanks
please share here which categories are missing in the frontend,
thanks
Hello,
Do you want to remove “Prev” and “Next” for all downloads package, please let me know
thanks
Can you please share the related URL please for checking,
thanks
Sorry for the inconvenience, directory add-on shortcodes has been changed, please check the latest shortcode formats from here, https://www.wpdownloadmanager.com/download/wpdm-directory-add-on/
thanks
please share the issue related page
thanks
Can I use the registration page enabled for checking,
thanks
Please, give your temporary wp-admin login details in a private reply for checking the issue
Thanks
I have installed the latest version on your side, the shortcode is working fine here, http://www.mesoamericaregion.org/wpdm-test/, you can see the latest version shortcodes here, https://www.wpdownloadmanager.com/download/wpdm-directory-add-on
thanks
Please, give your temporary wp-admin login details in a private reply for making a demo for you
Thanks
please share your package URL for checking
thanks
Hi,
Are you facing design sorting issue? please let me know
thanks
Can you please provide a screenshot which packages are coming, because there are lots of packages
thanks
Please add this code in your theme functions.php
add_filter( 'wp_nav_menu_items', 'wpdm_loginout_menu_link', 10, 2 );
function wpdm_loginout_menu_link( $items, $args ) {
if ($args->theme_location == 'primary') {
if (is_user_logged_in()) {
$items .= '<li class="right"><a href="'. wp_logout_url() .'">'. __("Log Out") .'</a></li>';
} else {
$items .= '<li class="right"><a href="'. wp_login_url(get_permalink()) .'">'. __("Log In") .'</a></li>';
}
}
return $items;
}
it should return login and a logout menu both
thanks
you are welcome,
thanks
I think this is a WP page, do you want to the sidebar here too?
thanks