Richie KS
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] Gap between thumbnail/Please update the plugin.you need to disable slider in customizer, or setup the slider properly, this won’t happen if the slider is config properly.
will see if an update if necessary soon, the theme itself work fine up to latest wp ver.
Forum: Themes and Templates
In reply to: [MesoColumn] Menu not full widthtry add num order to
remove_action(‘bp_inside_container_wrap’, ‘meso_add_primary_nav’);
like thisremove_action(‘bp_inside_container_wrap’, ‘meso_add_primary_nav’,10);
add_action(‘bp_before_container_wrap’, ‘meso_add_primary_nav’,20);Forum: Themes and Templates
In reply to: [MesoColumn] Single Product Price CSSthe price tag seem fine to me in demo, did you add any custom css that might cause this?
check if there’s one.Forum: Themes and Templates
In reply to: [MesoColumn] Menu not full widthadd this to custom css
#custom-img-header img {width:100%;height:auto;}and add this to functions.php or child theme functions.php
remove_action('bp_inside_container_wrap', 'meso_add_primary_nav'); add_action('bp_before_container_wrap', 'meso_add_primary_nav',20);Forum: Themes and Templates
In reply to: [MesoColumn] Gap between thumbnail/Please update the plugin.this should be ask in plugin forum. what plugin you refer to?
Forum: Themes and Templates
In reply to: [MesoColumn] MesoColumn updatethere will be update soon but not much changes.
Forum: Themes and Templates
In reply to: [MesoColumn] Sticky Primary Menu and underscore color controlany live site i can check?
Forum: Themes and Templates
In reply to: [MesoColumn] Sticky Primary Menu and underscore color controleach color can be assign with their own page, like if you edit category, you will see the color option, same goes for pages.
try edit the category that you have in custom menu. example wp-admin->posts->category->your category->edit color
Forum: Themes and Templates
In reply to: [MesoColumn] Sticky Primary Menu and underscore color controladd this to functions.php for sticky main nav
https://pastebin.com/yHaNaBE0you need to use custom menu in wp-admin->appeareance->menus->location->primary menu for the color to work.
each color can be assign with their own page, like if you edit category, you will see the color option, same goes for pages.Forum: Themes and Templates
In reply to: [MesoColumn] Slider stopped workingmight be js conflict by plugin, you can test the slider enable and activate plugin one by one and see which one causing the issue.
not much can be debug without above step.
Forum: Themes and Templates
In reply to: [MesoColumn] otice: Undefined index: page_colorsure, will try update it when its available.
Forum: Themes and Templates
In reply to: [MesoColumn] Photo dimensionsForum: Themes and Templates
In reply to: [MesoColumn] otice: Undefined index: page_colortry replace the
mesocolumn/lib/functions/color-functions.php
with this
//cdn.dezzain.com/1/2018/01/color-functions-meso-1.7.zipForum: Themes and Templates
In reply to: [MesoColumn] Photo dimensionsopen mesocolumn/lib/templates/related.php and edit this code
<?php echo dez_get_featured_post_image($thepostlink, "</a>", 250, 250, "aligncenter", "thumbnail",dez_get_image_alt_text(),the_title_attribute('echo=0'), false); ?>thumbnail to medium.
there should be 2 similiar code top and bottom of the template, edit them both.
Forum: Themes and Templates
In reply to: [MesoColumn] Slider Reoriginally the slider auto 100% width auto height the slider image, it must have been some added css that made the slider image scale like the screenshot you link above.
try remove the code above if added and search for any related custom css added related to slider like the above code.