Richie KS
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] GoogleAdSense Ads not displayedthe theme did not support direct script type ad like adsense.
read the faq.txt inside theme on using shortcoder plugin.
Forum: Themes and Templates
In reply to: [MesoColumn] Use MesoColumn Google Fonts?yes that would do. any window safe font use should eliminate any google font linking.
Forum: Themes and Templates
In reply to: [MesoColumn] Use MesoColumn Google Fonts?try add this to functions.php
remove_action('wp_enqueue_scripts', 'mesocolumn_theme_load_gwf_styles',20);this will remove the default open sans font.
however if you want to use different google font, just simply go to customizer->fonts
Forum: Themes and Templates
In reply to: [MesoColumn] Is MesoColumn compatible with WordPress 4.9.6the demo use latest wp and plugin ver, everything seem fine.
http://demo.dezzain.com/they are showing fine to me in all pages on your site.
https://s22.postimg.cc/hdzotp3u9/Screenshot-6776565.jpgmight need to adjust the previous css to
body.home .heateor_sss_vertical_sharing, body.archive .heateor_sss_vertical_sharing { padding: 10px 0 !important; }ok the try
function meso_add_ss_counter() { if( !is_single() ) { echo do_shortcode('[Sassy_Social_Share type="floating"]'); } } add_action('wp_footer','meso_add_ss_counter');just in case, you might want to flush cache or refresh browser after any edits.
try modifiy the code to this
function meso_add_ss_counter() { if( is_home() || is_archive() ) { echo do_shortcode('[Sassy_Social_Share type="floating"]'); } } add_action('wp_footer','meso_add_ss_counter');if is_archive() do not work, try is_category()
try add this custom css
body.home .heateor_sss_vertical_sharing { padding: 10px 0 !important; }
seem like the plugin use action hook the_content() to show the social button. where the index homepage in mesocolumn use custom the_excerpt()
add this to functions.php to be able to show one in homepage.
function meso_add_ss_counter() { if( is_home() ) { echo do_shortcode('[Sassy_Social_Share type="floating"]'); } } add_action('wp_footer','meso_add_ss_counter');also need to choose wp-admin->sassy social share->floating interface->Url of the webpage where icons are located (default)
what is the social plugin used?
Forum: Themes and Templates
In reply to: [MesoColumn] Are cookies set by MesoColumn?no, there’s no cookie or activity tracking in themes. why? did you notice any unusual activity? plugin causing maybe..
Forum: Themes and Templates
In reply to: [MesoColumn] WP Quiz Plugin Conflict‘jquery is not defined’ might be the reason, is there a reason why jquery not showing in homepage and other pages?
try resave your customizer, and maybe enable customizer->posts->enable first grab image
Forum: Themes and Templates
In reply to: [MesoColumn] the futureits still work and compatible with latest version of wp. no worry.
as for updates, might have one but only slight minor edits to css etc.
later maybe.
Forum: Themes and Templates
In reply to: [MesoColumn] Logo becomes extremely large!add this to customizer custom css
@media only screen and (min-width: 1440px) {
#custom-img-header img {width: auto !important;}
}