Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author webvitaly

    (@webvitaly)

    1) Check if Pagelist plugin activated

    2) Update Pagelist plugin to latest version

    3) Check if your content is showing with the_content() function;
    If not, than apply do_shortcode() for your content

    Thread Starter Styling Desigins

    (@stylingdesigins)

    How do I chack 3if your content is showing with the_content() function?
    And how do I apply do_shortcode() for your content?

    Thanks for reply!

    Plugin Author webvitaly

    (@webvitaly)

    If Pagelist plugin activated and updated, but shortcode is not executed, then (99%) you have an error in your template and your content is not getting properly.

    To check it – you may install some other plugin with shortcodes and add another shortcode into content area and test it. If another shortcode is not executed too, than you have an error in your theme templates.

    Thread Starter Styling Desigins

    (@stylingdesigins)

    I have shortcode magic installed and that works without problem. If you want to see for yourself I can give logins.

    Thanks,

    Wouter

    Thread Starter Styling Desigins

    (@stylingdesigins)

    or maybe you can see without login?

    Plugin Author webvitaly

    (@webvitaly)

    IMHO the problem is in your theme.

    Maybe you output content with:
    echo $post->post_content;
    and shortcodes does not execute.

    Try to replace it with:
    the_content();
    or with:
    echo do_shortcode($post->post_content);

    Thread Starter Styling Desigins

    (@stylingdesigins)

    I am using Travel Blogger theme:
    https://www.freetravelwebsitetemplates.com/

    Where do I enter the suggested changes?
    In theme I suppose but which file?

    Thanks for the help.

    Thread Starter Styling Desigins

    (@stylingdesigins)

    In which file can I find this code normally?
    I checked index.php but cannot find and don′t know where to look and what to look for exactly.

    Plugin Author webvitaly

    (@webvitaly)

    search in page.php or single.php

    Thread Starter Styling Desigins

    (@stylingdesigins)

    Its not there, hhmmm I am about to give up, any other suggestions?

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Shortcodes are shoing on page instead of page lists’ is closed to new replies.