Sampression
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Make] Blog URL@ GrowthFyre Not sure if you can setup a test user on your admin and send the details to [email protected] and we can have a look at that for you.
Forum: Themes and Templates
In reply to: [Make] Blog URL@ GrowthFyre, seems like you still need to change the slug fo the page from “blog-2” to “blog” and that should be fixed.
Forum: Themes and Templates
In reply to: [Make] Blog URLHi @growthfyre,
Seems like you need to set the page “blog” as post page from reading.
Please check the screenshot for detail – https://screencast.com/t/ZPtMYO21Thanks,
SampressionForum: Themes and Templates
In reply to: No Add New OptionHey ev879,
You can use FTP to upload the theme.
Thanks
Forum: Themes and Templates
In reply to: [Bootstrap Canvas WP] Just one level of submenu?Hi @beerallica,
Do you have a dev / demo setup, can you please send me the link.
I would be happy to take a look at that.
Thanks,
SampressionForum: Themes and Templates
In reply to: [Theme: Headway] Change opacity w/ hover of side-widget imagesThank you,
SampressionForum: Themes and Templates
In reply to: [Fifteen] change menu dropdown buttonThank you,
SampressionForum: Themes and Templates
In reply to: [Theme: Headway] Change opacity w/ hover of side-widget imagesAdd this code to your style.css file.
.siteorigin-widget-tinymce.textwidget img:hover{ opacity:0.8; }
Thanks,
SampressionForum: Themes and Templates
In reply to: [Fifteen] change menu dropdown buttonAdd this code
jQuery("li.menu-item-has-children a").on('click', function() { jQuery(this).siblings("ul").toggleClass('toggled-on'); });
Above
})(jQuery);
In function.js file.
Thanks,
SampressionForum: Themes and Templates
In reply to: [Fifteen] change menu dropdown buttonIf you have herf=”some link” inside
a
tag then the browser recognize as the link tag and if you don’t have href=”some link ” inside thea
tag browser render it as a general tag (but it is not consider as semantic). so, if you are providing href=”some link” then use first code instead you can use second code.Thanks,
SampressionForum: Themes and Templates
In reply to: [Fifteen] change menu dropdown buttonProvide # link to the
<a>paint</a>
Eg.<a href="#">paint</a>
Form the backend of the wordpressand add this
jQuery("li.menu-item-has-children > a[href='#']").on('click', function() { jQuery('.submenu').slideToggle('slow'); });
Or you can just add this code
jQuery("li.menu-item-has-children > a").on('click', function() { jQuery('.submenu').slideToggle('slow'); });
Thanks,
SampressionForum: Themes and Templates
In reply to: echo IE conditional css in headerHello Zane,
Add the following function to the functions.php file of your child theme
function ie_styles() { global $wp_styles; echo '<!--[if IE]>'; wp_enqueue_style('ie_only', get_stylesheet_directory_uri() . 'all-ie-only.css'); echo '<![endif]-->'; $wp_styles->add_data( 'ie_only', 'conditional', 'IE' ); } add_action( 'wp_enqueue_scripts','ie_styles');
Hope this helps.
Thanks
Forum: Themes and Templates
In reply to: [Fifteen] change menu dropdown buttonPleas change this code
.menu-item-has-children > a
to
.menu-item-has-children > a[href='#']
You have to add the code as per the toggle function.
If you get confused please provide us the menu code.Thanks,
SampressionForum: Themes and Templates
In reply to: [Bootstrap Canvas WP] Just one level of submenu?Hello Beerallica,
You might need to add script to fix this on “/themes/YOUR_THEME_FOLDER/js/scripts.js”.
$(".dropdown-menu > li.menu-item-has-children > a").on("click",function(e){ var current=$(this).next(); var grandparent=$(this).parent().parent(); if($(this).hasClass('left-caret')||$(this).hasClass('right-caret')) $(this).toggleClass('right-caret left-caret'); grandparent.find('.left-caret').not(this).toggleClass('right-caret left-caret'); grandparent.find(".sub-menu:visible").not(current).hide(); current.toggle(); e.stopPropagation(); }); $(".dropdown-menu > li:not(.menu-item-has-children) > a").on("click",function(){ var root=$(this).closest('.dropdown'); root.find('.left-caret').toggleClass('right-caret left-caret'); root.find('.sub-menu:visible').hide(); });
Thanks,
SampressionForum: Themes and Templates
In reply to: [Virtue] portfolio gridPlease check “Step Two: Create a Portfolio Grid Page” section on this tutorials.
https://www.kadencethemes.com/creating-a-portfolio-page-with-virtue/I believe you have to choose “Portfolio Grid” page template.