Title: clembke's Replies | WordPress.org

---

# clembke

  [  ](https://wordpress.org/support/users/clembke/)

 *   [Profile](https://wordpress.org/support/users/clembke/)
 *   [Topics Started](https://wordpress.org/support/users/clembke/topics/)
 *   [Replies Created](https://wordpress.org/support/users/clembke/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/clembke/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/clembke/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/clembke/engagements/)
 *   [Favorites](https://wordpress.org/support/users/clembke/favorites/)

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/clembke/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/clembke/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Lister Lite for Amazon] Create custom Product Properties](https://wordpress.org/support/topic/create-custom-product-properties-2/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/create-custom-product-properties-2/#post-17094607)
 * Ok, I will try it out and let you know how it works out. Pls, hold the thread
   open, thx.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Lister Lite for Amazon] Create custom Product Properties](https://wordpress.org/support/topic/create-custom-product-properties-2/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/create-custom-product-properties-2/#post-17085684)
 * Hi John,
 * Thank you for your response. Will they get pulled even is they don’t appear in
   the “Product Details” list of “Select an attribute” modal window? So I could 
   just put in the code dosage_type, which I will have a different value for each
   product, and it will pull the value from the product page and post it to Amazon?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Lister Lite for Amazon] Create custom Product Properties](https://wordpress.org/support/topic/create-custom-product-properties/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [2 years, 9 months ago](https://wordpress.org/support/topic/create-custom-product-properties/#post-17076509)
 * Hi, I tried adding custom fields to the product post type. They show up in the
   post editing view, but do not show up in the list of “Product Properties” shortcodes
   available to use in the “profiles”, how can I tell the “WP-Lister Lite for Amazon”
   plugin to pick up these extra custom fields in the Woocommerce product post?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Lister Lite for Amazon] Create custom Product Properties](https://wordpress.org/support/topic/create-custom-product-properties/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/create-custom-product-properties/#post-16927732)
 * Thanks John. I is the last link there that I used to create the code in the “
   functions.php” file. If I put in those “short codes” in the feed in the project,
   will the plugin pick up on them? I don’t have any variations on individual products
   so I am not sure the attributes would be a good option for me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Lister Lite for Amazon] Create custom Product Properties](https://wordpress.org/support/topic/create-custom-product-properties/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/create-custom-product-properties/#post-16922085)
 * How do I create a custom meta field? I thought that is what I was doing by putting
   the code below in the Functions file:
 * // Display Fields
   add_action(‘woocommerce_product_options_general_product_data’,‘
   woocommerce_product_custom_fields’);// Save Fieldsadd_action(‘woocommerce_process_product_meta’,‘
   woocommerce_product_custom_fields_save’);function woocommerce_product_custom_fields(){
   global $woocommerce, $post;echo ‘
 * ‘;
   // Dosagewoocommerce_wp_text_input(array(‘id’ => ‘_dosage\_form’, ‘placeholder’
   => ‘Capsules, pills, powder, etc.’, ‘label’ => **(‘Dosage for Amazon’, ‘woocommerce’),‘
   desc\_tip’ => ‘true’ ) ); //Unit count woocommerce\_wp\_text\_input( array( ‘
   id’ => ‘\_unit\_count’, ‘placeholder’ => ‘Unit Count’, ‘label’ => **(‘Unit Count’,‘
   woocommerce’), ‘type’ => ‘number’, ‘custom\_attributes’ => array( ‘step’ => ‘
   any’, ‘min’ => ‘0’ ) ) ); // Ingredient 1 woocommerce\_wp\_text\_input( array(‘
   id’ => ‘\_ingredient\_one’, ‘placeholder’ => ‘Ingredient’, ‘label’ => **(‘Ingredient
   1’, ‘woocommerce’), ‘desc\_tip’ => ‘true’ ) ); // Ingredient 2 woocommerce\_wp\
   _text\_input( array( ‘id’ => ‘\_ingredient\_two’, ‘placeholder’ => ‘Ingredient’,‘
   label’ => **(‘Ingredient 2’, ‘woocommerce’), ‘desc\_tip’ => ‘true’ ) ); // Ingredient
   3 woocommerce\_wp\_text\_input( array( ‘id’ => ‘\_ingredient\_three’, ‘placeholder’
   => ‘Ingredient’, ‘label’ => **(‘Ingredient 3’, ‘woocommerce’), ‘desc\_tip’ =>‘
   true’ ) ); // Key Product Features 1 woocommerce\_wp\_text\_input( array( ‘id’
   => ‘\_key\_product\_features\_one’, ‘placeholder’ => ‘Key Product Features’, ‘
   label’ => **(‘Key Product Features 1’, ‘woocommerce’), ‘desc\_tip’ => ‘true’ ));//
   Key Product Features 2 woocommerce\_wp\_text\_input( array( ‘id’ => ‘\_key\_product\
   _features\_two’, ‘placeholder’ => ‘Key Product Features’, ‘label’ => **(‘Key 
   Product Features 2’, ‘woocommerce’), ‘desc\_tip’ => ‘true’ ) ); // Key Product
   Features 3 woocommerce\_wp\_text\_input( array( ‘id’ => ‘\_key\_product\_features\
   _three’, ‘placeholder’ => ‘Key Product Features’, ‘label’ => **(‘Key Product 
   Features 3’, ‘woocommerce’), ‘desc\_tip’ => ‘true’ ) ); // Key Product Features
   4 woocommerce\_wp\_text\_input( array( ‘id’ => ‘\_key\_product\_features\_four’,‘
   placeholder’ => ‘Key Product Features’, ‘label’ => **(‘Key Product Features 4’,‘
   woocommerce’), ‘desc\_tip’ => ‘true’ ) ); // Key Product Features 5 woocommerce\
   _wp\_text\_input( array( ‘id’ => ‘\_key\_product\_features\_five’, ‘placeholder’
   => ‘Key Product Features’, ‘label’ => **(‘Key Product Features 5’, ‘woocommerce’),‘
   desc\_tip’ => ‘true’ ) ); //Directions For Use woocommerce\_wp\_textarea\_input(
   array( ‘id’ => ‘\_directions’, ‘placeholder’ => ‘Directions for use’, ‘label’
   => **(‘Directions for use’, ‘woocommerce’) ) ); // Flavour woocommerce\_wp\_text\
   _input( array( ‘id’ => ‘\_flavour’, ‘placeholder’ => ‘Flavour’, ‘label’ => **(‘
   Flavour’, ‘woocommerce’), ‘desc\_tip’ => ‘true’ ) ); // Intended Use 1 woocommerce\
   _wp\_text\_input( array( ‘id’ => ‘\_intended\_use\_one’, ‘placeholder’ => ‘Intended
   Use’, ‘label’ => **(‘Intended Use 1’, ‘woocommerce’), ‘desc\_tip’ => ‘true’ ));//
   Intended Use 2 woocommerce\_wp\_text\_input( array( ‘id’ => ‘\_intended\_use\
   _two’, ‘placeholder’ => ‘Intended Use’, ‘label’ => **(‘Intended Use 2’, ‘woocommerce’),‘
   desc\_tip’ => ‘true’ ) ); // Intended Use 3 woocommerce\_wp\_text\_input( array(‘
   id’ => ‘\_intended\_use\_three’, ‘placeholder’ => ‘Intended Use’, ‘label’ => **(‘
   Intended Use 3’, ‘woocommerce’), ‘desc\_tip’ => ‘true’ ) ); // Intended Use 4
   woocommerce\_wp\_text\_input( array( ‘id’ => ‘\_intended\_use\_four’, ‘placeholder’
   => ‘Intended Use’, ‘label’ => **(‘Intended Use 4’, ‘woocommerce’), ‘desc\_tip’
   => ‘true’ ) ); // Intended Use 5 woocommerce\_wp\_text\_input( array( ‘id’ =>‘\
   _intended\_use\_five’, ‘placeholder’ => ‘Key Product Features’, ‘label’ => \__(‘
   Intended Use 5’, ‘woocommerce’),‘desc_tip’ => ‘true’));
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Lister Lite for Amazon] Create custom Product Properties](https://wordpress.org/support/topic/create-custom-product-properties/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/create-custom-product-properties/#post-16909327)
 * Thank you for your response. As you can see from the screen shot it is not Attributes
   I am referring to, but “Product Properties”, as they are defined as in the plugin.
   Please look at the screen shot I link to in the original post to see what I mean.
   Thanks,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Problems with Add coupon page](https://wordpress.org/support/topic/problems-with-add-coupon-page/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/problems-with-add-coupon-page/#post-8380451)
 * I would be most grateful if someone would be able to shed some light on this 
   issue for me. Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SAM Pro (Free Edition)] Keeps loading](https://wordpress.org/support/topic/keeps-loading-3/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/keeps-loading-3/#post-7035103)
 * Admin is excluded from the Cache, but cleared it anyway but no luck.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SAM Pro (Free Edition)] Keeps loading](https://wordpress.org/support/topic/keeps-loading-3/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/keeps-loading-3/#post-7035071)
 * The only one I think could cause an issue would be WP Fastest Cache, but they
   were the ones to recommend Simple Ads Manager to begin with, which I now had 
   to switch to SAM Pro (Free Edition).
 * Do you have any known conflicts or type of plugins that it is in conflict with?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SAM Pro (Free Edition)] Keeps loading](https://wordpress.org/support/topic/keeps-loading-3/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/keeps-loading-3/#post-7035063)
 * I had Simple Ads Manager, but installed SAM Pro (Free Edition) on your recommendation.
   Hence it is SAM Pro (Free Edition) that I am having trouble with.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AdRotate Banner Manager] Annoying pop up in the UI after 3.12.1 update](https://wordpress.org/support/topic/annoying-pop-up-in-the-ui-after-3121-update/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/annoying-pop-up-in-the-ui-after-3121-update/#post-6499626)
 * Hi,
 * Thanks. It was Yoast SEO plugin that was causing the issue. I deactivated it 
   and reactivated it, sorted. Thank you for your attention.
 * /Christopher
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[WP Job Manager] Works with Ad Ons](https://wordpress.org/support/topic/works-with-ad-ons/)
 *  [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/works-with-ad-ons/#post-7883756)
 * What is the matter with people? You get something for free and then get miffed
   when it doesn’t do exactly what you want it to do? C’mon! I don’t think spending
   $1117 on the freakishly extensive library of plugins you get from Mike is anything
   to quibble about, after all the man’s gotta put food on the table. I commissioned
   the build of a very advanced system for a big lettings agency (multiple user 
   levels with cross permission levels, Chinese walled databases, booking system,
   etc.) and it cost $100k and to 6 months to complete. What Mike delivers for free
   is just incredible and then to add $117 to complete the series is just beyond
   incredible.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Content Aware Sidebars - Fastest Widget Area Plugin] Sidebar is only shown in the post section not pages](https://wordpress.org/support/topic/sidebar-is-only-shown-in-the-post-section-not-pages/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sidebar-is-only-shown-in-the-post-section-not-pages/#post-5539391)
 * Hi, Yes they are in the same conditions group. I am not sure what would be considered
   a custom database queries. I do have queries running on some of the pages that
   display products, bookmarks, etc.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Content Aware Sidebars - Fastest Widget Area Plugin] Sidebar is only shown in the post section not pages](https://wordpress.org/support/topic/sidebar-is-only-shown-in-the-post-section-not-pages/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sidebar-is-only-shown-in-the-post-section-not-pages/#post-5539380)
 * Hi,
 * Something happened over night, it worked when I set it up, but not when I checked
   it in the morning.
 * I have two posts and four different pages specified for the sidebar. Exposure:
   Singular & Archive
    Handle: Merge/Sidebar Merge Position: Top Order: 0
 * Thanks
 * -Christopher
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Content Aware Sidebars - Fastest Widget Area Plugin] Sidebar is only shown in the post section not pages](https://wordpress.org/support/topic/sidebar-is-only-shown-in-the-post-section-not-pages/)
 *  Thread Starter [clembke](https://wordpress.org/support/users/clembke/)
 * (@clembke)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/sidebar-is-only-shown-in-the-post-section-not-pages/#post-5539259)
 * The sidebar has now disappeared all together from all my pages.

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

1 [2](https://wordpress.org/support/users/clembke/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/clembke/replies/page/2/?output_format=md)