Support » Plugin: WP Date and Time Shortcode » Nice plugin thanks. Is Working on post title

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Denra.com

    (@denra)

    Dear @amaechi,

    You have not read the description of the plugin which states that by default in WordPress our shortcodes work only for post or page content because those are the places where the shortcodes are enabled by default. You did not read our F.A.Q. section or contact us for support before leaving a 1-star rating for the plugin. Here is the F.A.Q. answer to your problem:

    The shortcode doesn’t work in all places e.g. page/post title, footer, menus, etc.?

    WordPress applies the shortcodes in post’s and page’s content by default. If your theme does not apply shortcodes in other places automatically you may need to add additional code to your child theme’s functions.php to hook into those functions where you need to see the shortcodes applied.
    For example:
    // For the titles.
    add_filter(‘wp_title’, ‘do_shortcode’, 10);
    add_filter(‘the_title’, ‘do_shortcode’, 10);
    // For the menu.
    add_filter(‘walker_nav_menu_start_el’, ‘do_shortcode’, 10);
    etc.
    If you do not know how to put the correct code you may want to use additional plugin for the purpose like this one to enable any shortcodes in other places of your website pages.

    Plugin Author Denra.com

    (@denra)

    Dear @amaechi ,

    It seems that you are not interested to reply and confirm that you have solved your issue. It is a pity that some users are leaving such negative reviews without trying to read the plugin description and documentation, or contacting the support. This underestimates our ideas, work and willingness to help.

    Thanks for resolving the issue. Is Working now

    Plugin Author Denra.com

    (@denra)

    We are glad to hear that. Good luck!

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this review.