startsmartnow
Forum Replies Created
-
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, 3 months ago by startsmartnow.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Compatibility issueI 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
In reply to: [WP Posts Carousel] Custom Taxonomies and Custom FieldsHi, 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
In reply to: [WP Posts Carousel] Custom Field Links for Each CarouselQuick not – I used the disable link function that the plugin developer provided as an example on another support thread.
Forum: Plugins
In reply to: [WP Posts Carousel] Custom Field Links for Each CarouselI 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
In reply to: [WP Posts Carousel] Custom taxonomy in shortcodeI just posted a similar question here – https://ww.wp.xz.cn/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?
@dcarlbom – Thanks for the link to your article. It works!
Forum: Fixing WordPress
In reply to: Custom archive template for taxonomy subcategoriesThanks 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.
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.
Thank you for the reply.
Thanks! I will change the font.
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/CEdk
http://grab.by/CEdgThanks,
WhitThanks so much for you reply!
I figured out my own answer. I just put the player in a sidebar widget that shows up on every page.
Forum: Plugins
In reply to: [WP eCommerce] Strange image appearing on product category main pagesResolved.