mchavez17
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Remove Categories/ Breadcrumbs at Bottom of PageI actually figured it out! If anyone is interested in knowing how i did this, Locate theme folder (mine was safety zone with a parent of theme of gather, so you need to locate active theme) Locate functions.php located in safety zone folder on ftp and remove at the bottom,
add_action( ‘wp_enqueue_scripts’, ‘safety_zone_scripts’ );
add_filter( ‘woocommerce_breadcrumb_defaults’, ‘jk_change_breadcrumb_delimiter’ );
function jk_change_breadcrumb_delimiter( $defaults ) {
$defaults[‘home’] = ”;
// Change the breadcrumb delimeter from ‘/’ to ‘>’
$defaults[‘delimiter’] = ‘ <span style=”color:#65656a;”>></span> ‘;
return $defaults;
}So my entire functions.php file looks like this,
<?php
register_nav_menu(‘footer’, ‘Footer Navigation Menu’);
add_action(‘init’,’clean_theme’);
function clean_theme(){
$priority = has_action(‘wp_head’, ‘ttrust_theme_head’);
$remove_result = remove_action(‘wp_head’,’ttrust_theme_head’, $priority);
$priority = has_action(‘woocommerce_product_tabs’, ‘woocommerce_product_reviews_tab’);
remove_action(‘woocommerce_product_tabs’, ‘woocommerce_product_reviews_tab’, $priority);
$priority = has_action(‘woocommerce_product_tab_panels’, ‘woocommerce_product_reviews_panel’);
remove_action(‘woocommerce_product_tab_panels’, ‘woocommerce_product_reviews_panel’, $priority);
}function safety_zone_scripts() {
wp_enqueue_script( ‘safety-zone’, get_stylesheet_directory_uri() . ‘/js/safety-zone.js’, array( ‘jquery’ ), ‘1.0.0’, true );
}
?>I think i did this right, it def looks right, thank you for your help Mike Jolley!
Forum: Plugins
In reply to: [WooCommerce] Remove Categories/ Breadcrumbs at Bottom of PageOk im getting somewhere. My parent theme is gather and my child theme is safety zone. When i temporarily disable my theme and change it to the parent (gather) those breadcrumbs at bottom of page for the categories do go away. However, in my safety zone theme folder i only have a few php files, functions, header and footer. I also have a style.css in there if that makes a difference.
Forum: Plugins
In reply to: [WooCommerce] Remove Categories/ Breadcrumbs at Bottom of PageSounds like your saying this isn’t related to woocommerce if im hearing you correctly? So once i locate the correct php file what do i do then? sorry im slightly new to php, thanks.
Forum: Plugins
In reply to: [Easing Slider] Full Width SliderHi all,
I was actually able to figure this out on my own. I went into wp-content>plugins>easingslider>css>easingslider.min.css and changed the margins. Here is that css code, (can be found right at the top of the css page).
.easingslider,.easingslider-image,.easingslider-link,.easingslider-slide,.easingslider-viewport{line-height:0!important;outline:0!important;padding:0!important;margin:0px -24px 0px -14px!important}
I then had to change background color to match the background color of website background,
.easingslider-slide{position:absolute!important;top:0;left:0;bottom:0;right:0;background-color:#f8f8fff
This last bit of code is located a few rows down from the top.
Here is the final result,
https://www.safety-zone.com/home-2Also one thing worth noting, when the images in the slider were assigned a link a border got created on the left hand side, i made all images have links so they all behave that way then adjusted the margins again accordingly. Success!