Title: Using short-codes
Last modified: March 9, 2020

---

# Using short-codes

 *  Resolved [terry789](https://wordpress.org/support/users/terry789/)
 * (@terry789)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/)
 * Hello,
 * I work with short codes because my theme (archive page) is not very suitable (
   genesis child theme)
 * When I use the code *show_categories* I see my categories.
    When I now click 
   on a category I come to the “automatic” page with products of that category.
 * However, I want to go to the pages with the short code *show_products category
   = “15”* etc.
    Is this possible (a redirect maybe)?
 * Thanks

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/using-short-codes-2/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/using-short-codes-2/page/2/?output_format=md)

 *  Plugin Author [ndre](https://wordpress.org/support/users/ndre/)
 * (@ndre)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12526624)
 * Hi [@terry789](https://wordpress.org/support/users/terry789/),
 * Why the “automatic” pages are not suitable in your case?
 * Using shortcodes like than will be a lot of work (depending on how many pages
   do you have). Maybe we can help you to use the automatic pages…
 * You can use any redirect plugin from WordPress repository to set redirects. For
   example: [https://wordpress.org/plugins/redirection/](https://wordpress.org/plugins/redirection/)
 *  Thread Starter [terry789](https://wordpress.org/support/users/terry789/)
 * (@terry789)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12526659)
 * [@ndre](https://wordpress.org/support/users/ndre/)
 * See my problem here:
 * The [“automatic”](https://paste.pics/4bc12f67ce5ed71639e650784e7e76f0) page made
   by the theme
 * The [desired appearance](https://paste.pics/b6dd71e8e94be86f782296046c1095b3)
   of the categories I mean products. sorry
 * Edit: The standard category page and standard individual product page are correct
   with your plugin
    -  This reply was modified 6 years, 2 months ago by [terry789](https://wordpress.org/support/users/terry789/).
    -  This reply was modified 6 years, 2 months ago by [terry789](https://wordpress.org/support/users/terry789/).
 *  Plugin Author [ndre](https://wordpress.org/support/users/ndre/)
 * (@ndre)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12526692)
 * [@terry789](https://wordpress.org/support/users/terry789/),
 * The desired appearance is the Modern Grid. You can go to Catalog Settings > Catalog
   Design and switch to Modern Grid.
 *  Thread Starter [terry789](https://wordpress.org/support/users/terry789/)
 * (@terry789)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12526698)
 * [@ndre](https://wordpress.org/support/users/ndre/)
 * Unfortunately, that doesn’t work. These settings are already correct (Modern 
   Grid) but the products page is displayed in my theme as in the first example.
 * Only with the short code *show_products category = “15”* etc. is it properly 
   displayed as in example two.
 *  Plugin Author [ndre](https://wordpress.org/support/users/ndre/)
 * (@ndre)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12526715)
 * [@terry789](https://wordpress.org/support/users/terry789/),
 * Do you have the Premium Toolset extension installed? If you have you must have
   choosen the Classic List for the categories listing template in Catalog Settings
   > General (Categories Settings section).
 * Can you please check it?
 *  Thread Starter [terry789](https://wordpress.org/support/users/terry789/)
 * (@terry789)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12526728)
 * [@ndre](https://wordpress.org/support/users/ndre/)
 * No, this is not installed. For now I only use the basic plugin.
 * The products page now looks like the “normal” archive page of the theme.
 * I don’t know how to change this to a “normal” post or page of the theme.
 *  Plugin Author [ndre](https://wordpress.org/support/users/ndre/)
 * (@ndre)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12526817)
 * [@terry789](https://wordpress.org/support/users/terry789/),
 * Can you please provide your catalog URL?
 *  Thread Starter [terry789](https://wordpress.org/support/users/terry789/)
 * (@terry789)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12526826)
 * [@ndre](https://wordpress.org/support/users/ndre/)
 * [This is the page](https://artsdesign.nl/demo/products/) as made by your plugin
 *  Thread Starter [terry789](https://wordpress.org/support/users/terry789/)
 * (@terry789)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12537051)
 * [@ndre](https://wordpress.org/support/users/ndre/),
 * Do you have a sugestion for this?
 * Most importantly, the category title should not overwrite the top product name.
 * I have looked at the most obvious php files of your plugin but I cannot find 
   the answer.
 * Thanks
 *  Plugin Author [ndre](https://wordpress.org/support/users/ndre/)
 * (@ndre)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12539965)
 * Hi [@terry789](https://wordpress.org/support/users/terry789/),
 * What is your integration method selected in catalog settings?
 * Can you please update to the latest version?
 *  Thread Starter [terry789](https://wordpress.org/support/users/terry789/)
 * (@terry789)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12540055)
 * [@ndre](https://wordpress.org/support/users/ndre/),
 * The setting is standard – Catalog Layout Integration with the theme (Magazine
   Pro Theme)
 * Plugin updated – No difference
 * I also tried the css and php snippets:
 * CSS:
    Hide product listing name or category name on category page:
 *     ```
       .product-listing-name {
       display: none;
       }
       ```
   
 * Hide category name on categories listing.
 *     ```
       .product-subcategories .archive-listing .product-name {
       display: none;
       }
       ```
   
 * PHP in my functions.php file:
    Disable category name: `remove_action( 'product_listing_header','
   add_product_listing_name' );`
 * Disable product name:
    `remove_action( 'before_product_entry', 'single_product_header');`
 * All have no visible effects
 *  Plugin Author [ndre](https://wordpress.org/support/users/ndre/)
 * (@ndre)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12540374)
 * Hi [@terry789](https://wordpress.org/support/users/terry789/),
 * Can you please provide a screenshot of this settings section:
    `Catalog Layout
   Integration with the theme (Magazine Pro Theme)`
 *  Thread Starter [terry789](https://wordpress.org/support/users/terry789/)
 * (@terry789)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12540401)
 * [@ndre](https://wordpress.org/support/users/ndre/),
 * [see here](https://paste.pics/7c76f89bd08bd62f70e6ddbc90671d84)
 * I also tried this: – Force product name display:
 * The only effect is that on the individual product page the title is visible twice
 * Thank you for your patience 🙂
 *  Plugin Author [ndre](https://wordpress.org/support/users/ndre/)
 * (@ndre)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12540681)
 * Hi [@terry789](https://wordpress.org/support/users/terry789/),
 * Thank you for the information.
 * This must be theme specific as we are not able to reproduce such issue, even 
   with the Magazine theme available in WordPress repository.
 * Can you please contact us directly [here](https://implecode.com/support/) with
   the bug report option? We will need some theme files which cannot be sent on 
   the forum.
 *  Thread Starter [terry789](https://wordpress.org/support/users/terry789/)
 * (@terry789)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/#post-12540700)
 * [@ndre](https://wordpress.org/support/users/ndre/),
 * done

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/using-short-codes-2/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/using-short-codes-2/page/2/?output_format=md)

The topic ‘Using short-codes’ is closed to new replies.

 * ![](https://ps.w.org/post-type-x/assets/icon-128x128.png?rev=1261702)
 * [Product Catalog Simple](https://wordpress.org/plugins/post-type-x/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/post-type-x/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/post-type-x/)
 * [Active Topics](https://wordpress.org/support/plugin/post-type-x/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/post-type-x/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/post-type-x/reviews/)

 * 18 replies
 * 2 participants
 * Last reply from: [terry789](https://wordpress.org/support/users/terry789/)
 * Last activity: [6 years, 2 months ago](https://wordpress.org/support/topic/using-short-codes-2/page/2/#post-12552218)
 * Status: resolved