Richie KS
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] Slider stopped workingi see you remove or disable the slider, can’t really check what’s wrong without the slider enable after you change the site setting or plugin disable.
Forum: Themes and Templates
In reply to: [MesoColumn] Photo dimensionspost text article width, around 700-800px width i think. then again its built with responsive fluid in mind so its width are flexible.
Forum: Themes and Templates
In reply to: [MesoColumn] Photo dimensionsthe featured image use your own set of setting dimension on media. so any size should be fine, my own media setup on mesocolumn demo is like this
thumbnail 150×150
medium 300×300
large 1000×800its work fine in my end.
Forum: Themes and Templates
In reply to: [MesoColumn] Slider Retry remove the image slider auto 100% width, add this to custom css
#custom .jdGallery .slideElement {width: 100%; height: 100%; background: #191919 no-repeat center center; -webkit-background-size: auto; -moz-background-size: auto; -o-background-size: auto; background-size:auto;}Forum: Themes and Templates
In reply to: [MesoColumn] Full widthadd this to functions.php
function meso_remove_slider_action() { remove_action('bp_before_blog_entry','meso_add_featured_slider'); } add_action('init','meso_remove_slider_action'); function meso_add_slider_header() { add_action('bp_inside_container_wrap','meso_add_featured_slider',20); } add_action('wp_head','meso_add_slider_header');Forum: Themes and Templates
In reply to: [MesoColumn] Slider stopped workingseem to be working fine in my end, using the same image url link from your slider, i’ve set it to same 2 posts.
it might have to do with a js conflict etc from recent activate plugin or added scripts.
- This reply was modified 8 years, 6 months ago by Richie KS.
Forum: Themes and Templates
In reply to: [MesoColumn] advertisement option is not working for me#.Wj2cq0mWaM8
this is the social plugin tracking parameter, you might be able to disable it.Forum: Themes and Templates
In reply to: [MesoColumn] advertisement option is not working for mescript code did not supported. you need to use shortcode in order to use it in mesocolumn theme. check the mesocolumn/faq.txt for more info on using plugin shortcoder.
Forum: Themes and Templates
In reply to: [MesoColumn] Banner disappearedthe problem not the theme, its the image url like this
hxxp://box5109.temp.domains/~maucerig/wp-content/uploads/2017/09/Chloe-mauceri-volleyball-HEADER-round-2.jpgcomes up with 404 error not found.
try upload the image to your wp site again thro the customizer->header
Forum: Themes and Templates
In reply to: [MesoColumn] Odd issue with Excerpts on the Homepageneed to update the excerpt number customizer->homepage featured category->design and layout->exceprt count->chnage it to 30 and save and resave to 25 if needed to.
Forum: Themes and Templates
In reply to: [MesoColumn] title issuei see its fix already. what’s the cause?
Forum: Themes and Templates
In reply to: [MesoColumn] title issueboth issue cause by plugin. yoast seo and the social plugin (#xxxx).
need to recheck the yoast plugin and maybe disable tracking for the social plugin.seem like some kind of plugin, do you have any language translator related plugin install? try disable it.the url seem suspicous
hxxp://noaijdpnepcgjemiklgfkcfbkokogabh/content/html/options/options.html?bblmaybe some kind of injection from plugin you currently use or activated. you need to scan your website with sucuri just to be safe.
- This reply was modified 8 years, 7 months ago by Richie KS.
Forum: Themes and Templates
In reply to: [MesoColumn] Product image doesn’t appears in the shop (WC)something is causing the opacity on the image to 0. try add this to custom css
.woocommerce-product-gallery {opacity:100 !important;}#menu color
you need to setup custom menu for appeareance->menus->location->primary
each menu item color can be setup either in their wp-admin->posts->category->edit category->edit color or edit pages->edit color#slider show latest posts
enable the slider via customize->general->slider, add 1,2,3 in the category id and choose any number in category count, and save setting. this doesn’t matter anyway since we going to use hardcoded code to change it. now open mesocolumn/lib/sliders/jd-gallery-slider.php edit code line 19$query = new WP_Query( "cat=$featured_category&posts_per_page=$featured_number&orderby=date" );to
$query = new WP_Query( "cat=&posts_per_page=5&orderby=date" );this should show the latest 5 post according to date.