ikaring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: is there a shortcode to insert standard text?Hi.
You can add any shortcode in your theme functions.php.
This is very basic one to return ‘Hi!’ with p tag.
It can be called by[std].function std_func( $atts ) { return "<p>Hi!</p>"; } add_shortcode( 'std', 'std_func' );Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileAh, that is the reason previous display:none has added.
This should hide search widget in both PC and mobile.
.search-widget-handle { display: none; }As to icon color, there are several rules set in your css ( pls check with developper tools, which I use to check which styles are applied to a element, google it with ‘chrome+developer+tools’ ).
It would be better adjusting them, but quick fix is to add extra css..module.widget-handle i { color: #000; }Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileIt seems you have set additional css:
.module.widget-handle i { display: none; }Try removing it.
Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileYes, I think so.
But be sure to check yourself with your mobile device(and some coleagues’s).It is better adding resize trigger, but that is only needed when window width get changed in PC browser, or device rotation.
Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileThe layout in that page uses Masonry, and I suppose it does not set to trigger re-location of items when window resize.
Customizer only changes window size and does not reload page, so Masonry wont be triggered. Or it might be a trigger timing, because customiser animates window size change.Anyway.
It should be OK when viewed with real device, since it will be triggerd when page loads.Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileThanks.
It looks ok in my several devices.
Top slideshow images, right?Could you provide us the mobile device you tested?
Forum: Fixing WordPress
In reply to: Images appear squashed on Metaslider gallery on mobileHi.
I believe your page url is wrong.Forum: Fixing WordPress
In reply to: Portafolio without paginationLooks like your theme is a paid theme.
It is better to ask theme author for help.Forum: Fixing WordPress
In reply to: Problem with a title in pageOK.
Pls try below code instead.
Since function woocommerce_product_loop_start now has filter hook, it would be better use it.
Note this fix might affect other product loop output.add_filter( 'woocommerce_product_loop_start', 'my_product_loop_start' ); function my_product_loop_start( $echo = true ) { $loop_start = '<ul class="grid product-list clearfix desktop-columns-4 tablet-columns-2 mobile-columns-1">'; if ( $echo ) { echo $loop_start; } else { return $loop_start; } }Forum: Fixing WordPress
In reply to: Problem with a title in pageWhy do you need to add that code?
I think the culprit is in your theme, like archive.php/taxonomy.php or something.
However, it looks like you are using premium theme, it would be better to ask the theme author for help.Forum: Fixing WordPress
In reply to: Problem with a title in pageHave you resolved them? I dont see them now.
Forum: Fixing WordPress
In reply to: After updating themes, all css features gone!Ah, you shoud not use the plugin in the live site, as the plugin author emphasis.
I doubt if it is possible to rollback a paid theme.If you have back-up theme data in your PC, can you upload them to your server via ftp?
Forum: Fixing WordPress
In reply to: Comment box past marginsHi.
You can fix to add css:textarea { max-width: 100%; }Hi.
You might need to use YouTube Data API to get search result from YouTube.Forum: Fixing WordPress
In reply to: After updating themes, all css features gone!Hi.
It looks ok and there are many css files loaded.
Have you resolved?Anyway, you can just replace current theme files with your backup theme files for restoring/downgrading.