Support » Plugin: Restaurant Menu Manager » Restaurant Menu Entry without link

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Noumaan Yaqoob

    (@noumaan)

    Yes it is possible but for that you will have to edit the plugin which is not recommended. If you decide to go a head and make these changes to the plugin, please note that whenever a new version of the plugin comes out and you update the plugin it will undo your changes.

    Here is how you can do that

    If you want to remove the link from Entry Title, you will have to look for code with this line:

    <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Learn more about: ', 'restaurant-menu-manager' ); ?><?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>

    There are three instances where you will find this code you need to replace it with this code.

    <h3><?php the_title_attribute(); ?>"><?php the_title(); ?></h3>

    If you also want to show full contents of the entry instead of just excerpt then you will have to replace the_excerpt() with the_content() it is also used on three different lines in the plugin.

    Thread Starter snecz

    (@snecz)

    Thanks. Working great.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Restaurant Menu Entry without link’ is closed to new replies.