Title: startsmartnow's Replies | WordPress.org

---

# startsmartnow

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] GTM – visitorType undefined](https://wordpress.org/support/topic/gtm-visitortype-undefined/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [6 years, 5 months ago](https://wordpress.org/support/topic/gtm-visitortype-undefined/#post-12448578)
 * I don’t think that works when you put Google Analytics in your GTM container.
   Also, for membership websites, you don’t want to block logged in users. You want
   to block logged in admin users. Thanks for the tip! That will work for clients
   or other folks who don’t have membership websites.
 * I found a work around using the DOM element and body class.
    -  This reply was modified 6 years, 5 months ago by [startsmartnow](https://wordpress.org/support/users/startsmartnow/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shortcodes Ultimate - Content Elements] Compatibility issue](https://wordpress.org/support/topic/compatibility-issue-22/)
 *  [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [10 years ago](https://wordpress.org/support/topic/compatibility-issue-22/#post-7570792)
 * I am also having the same problem. I am not able to “dismiss” this warning. It’s
   very annoying. In my case, it’s very important to have this setting enabled.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Posts Carousel] Custom Taxonomies and Custom Fields](https://wordpress.org/support/topic/custom-taxonomies-and-custom-fields-2/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/custom-taxonomies-and-custom-fields-2/#post-7214189)
 * Hi, I was on a very tight delivery date and figured out a workaround for this
   particular project. I used wordpress built-in categories. This isn’t ideal but
   it worked for now. However, I would like still like to understand how to do this
   because I really love your carousel and would like to make it part of future 
   projects. I often used custom post types and custom taxonomies in the websites
   I develop.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Posts Carousel] Custom Field Links for Each Carousel](https://wordpress.org/support/topic/custom-field-links-for-each-carousel/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/custom-field-links-for-each-carousel/#post-7226161)
 * Quick not – I used the disable link function that the plugin developer provided
   as an example on another support thread.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Posts Carousel] Custom Field Links for Each Carousel](https://wordpress.org/support/topic/custom-field-links-for-each-carousel/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/custom-field-links-for-each-carousel/#post-7226159)
 * I was able to figure this out myself. I am sharing here in case anyone else needs
   to know. I am using WP Types plugin to create custom post types and custom fields.
 *     ```
       function my_wpc_disable_featured_image_link( $featured_image, $params ) {
           if ( $params['params']['show_featured_image'] === 'true' ) {
               $data_src = 'src="' . $params['image'] . '"';
               $image_class = null;
       		$link = types_render_field("company-website", array("target"=>"_blank","output" => "raw"));
   
               if ($params['params']['lazy_load'] === 'true') {
                   $data_src = 'data-src="' . $params['image'] . '" data-src-retina="' . $params['image']. '"';
                   $image_class = 'class="owl-lazy"';
               }
   
               $featured_image = '<div class="wp-posts-carousel-image">';
                   $featured_image.= '<a href="' . $link . '"><img alt="' . $params['post']->post_title . '" style="max-width:' . $params['params']['image_width'] . '%;max-height:' . $params['params']['image_height'] . '%" ' . $data_src . $image_class . '></a>';
               $featured_image.= '</div>';
   
               return $featured_image;
           }
       }
       add_filter('wpc_item_featured_image', 'my_wpc_disable_featured_image_link', 1, 2);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Posts Carousel] Custom taxonomy in shortcode](https://wordpress.org/support/topic/custom-taxonomy-in-shortcode/)
 *  [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/custom-taxonomy-in-shortcode/#post-7165802)
 * [@inthebluesky](https://wordpress.org/support/users/inthebluesky/)
 * I just posted a similar question here – [https://wordpress.org/support/topic/custom-taxonomies-and-custom-fields-2?replies=1](https://wordpress.org/support/topic/custom-taxonomies-and-custom-fields-2?replies=1)–
   because I don’t understand how you used the “wpc_query” filter to fix your problem.
   Can you share your solution?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Using Google Tag Manager with on_sent_ok hook in Contact Form 7](https://wordpress.org/support/topic/using-google-tag-manager-with-on_sent_ok-hook-in-contact-form-7/)
 *  [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/using-google-tag-manager-with-on_sent_ok-hook-in-contact-form-7/#post-5147929)
 * [@dcarlbom](https://wordpress.org/support/users/dcarlbom/) – Thanks for the link
   to your article. It works!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Custom archive template for taxonomy subcategories](https://wordpress.org/support/topic/custom-archive-template-for-taxonomy-subcategories/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/custom-archive-template-for-taxonomy-subcategories/#post-6042318)
 * Thanks for the reply. I thought there might be some way to handle this within
   template. As I’ve started expanding the products and categories, I’ve realized
   that I needed to setup things up differently. I’m removing product categories.
   I’m making car decals a custom taxonomy and putting animal decals (along with
   the 25 other categories) under car decals. Now, I have a template called taxonomy-
   car-decals.php and this template applies to all the categories within this taxonomy.
   Problem solved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shortcodes Ultimate - Content Elements] Slider responsive issues / strange height changes](https://wordpress.org/support/topic/slider-responsive-issues-strange-height-changes/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/slider-responsive-issues-strange-height-changes/#post-6042317)
 * Thanks for the helpful replies. I need the max-width to be 1280px for the layout.
   I’m hoping the plugin author will respond to this issue and actually fix the 
   problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] External Link (under Product Delivery options) keeps disappearing](https://wordpress.org/support/topic/external-link-under-product-delivery-options-keeps-disappearing/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/external-link-under-product-delivery-options-keeps-disappearing/#post-5553168)
 * Thank you for the reply.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.miniAudioPlayer - an HTML5 audio player for your mp3 files] The letter i shows up as number 1 in song title.](https://wordpress.org/support/topic/the-letter-i-shows-up-as-number-1-in-song-title/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/the-letter-i-shows-up-as-number-1-in-song-title/#post-5530178)
 * Thanks! I will change the font.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.miniAudioPlayer - an HTML5 audio player for your mp3 files] The letter i shows up as number 1 in song title.](https://wordpress.org/support/topic/the-letter-i-shows-up-as-number-1-in-song-title/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/the-letter-i-shows-up-as-number-1-in-song-title/#post-5529998)
 * I just checked on Chrome, Firefox, and IE. I still see the “1” on all browsers.
   My computer is Windows 8.
 * Here are the screen shots:
 * [http://grab.by/CEdm](http://grab.by/CEdm)
    [http://grab.by/CEdk](http://grab.by/CEdk)
   [http://grab.by/CEdg](http://grab.by/CEdg)
 * Thanks,
    Whit
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.miniAudioPlayer - an HTML5 audio player for your mp3 files] How to Add Google Analytics Event Tracking](https://wordpress.org/support/topic/how-to-add-google-analytics-event-tracking/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/how-to-add-google-analytics-event-tracking/#post-5529471)
 * Thanks so much for you reply!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[mb.miniAudioPlayer - an HTML5 audio player for your mp3 files] Audio on all pages](https://wordpress.org/support/topic/audio-on-all-pages/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/audio-on-all-pages/#post-5529329)
 * I figured out my own answer. I just put the player in a sidebar widget that shows
   up on every page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP eCommerce] Strange image appearing on product category main pages](https://wordpress.org/support/topic/strange-image-appearing-on-product-category-main-pages/)
 *  Thread Starter [startsmartnow](https://wordpress.org/support/users/startsmartnow/)
 * (@startsmartnow)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/strange-image-appearing-on-product-category-main-pages/#post-4947550)
 * Resolved.

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

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