Forum Replies Created
-
AuthorPosts
-
I found my error. Thanks
Carla
I figured it out.
I figured it out by searching other topics. Thanks.
Thank you! I also added text-align: center; to center the text.
This reply has been marked as private.I found another poster with the same issue. They used the content slider to solve the problem. I just wish I could center the titles and make the font a little bigger.
I have used both the LayerSlider and the Full Screen slider and the image get cut off on my small screen. Any way to fix that? Also can the Layerslider scroll up with you scroll down. The Full Screen Slider has that ability. The LayerSlider is just static. My client likes the way the Full Screen slider moves but want the ability to Layer images.
I found where I could hide the search function in the theme.
Yigit,
The update did the trick. Thanks.
Carla
Sure. I will update. I thought I was all caught up. I’ll let you know if the update fixes the problem. Also no quotes listed when I added the URL. Weird.
This reply has been marked as private.This reply has been marked as private.Ismael, I’m a bit frustrated. I set no side bar in Enfold and then for that page I choose side bar setting right hoping it would show just my custom settings for the sidebar but it doesn’t change anything. For my widget settings I have the sidebars set for my custom settings so those should just show up. Also is it possible to show the comments from the post that is showing rather than having to click on the post to view the comments. The reason we want to show the comments on the front page is for SEO reasons. Give the page more content and it will always to be changing.
Thanks for your help in advanced.
carla
Also I only want to show the custom menu widget on the side bar. I can’t seem to get rid of the side bar that has the dummy pages listed. I have selected just to show my custom pages but nothing seems to work. thanks in advanced.
I double checked the plugins. Go daddy added two with the install so I deactivated them and the sliders work now.
I downgraded for the time being. Waiting for all the bugs to get worked out. I use the theme on other site and it has no issues. So not sure what happened.
I went ahead and just downgraded WP and the theme. All works for now. I use this theme on another website and I have the same plugins and no issues. So not sure what happened.
Also the Testimonial slider does not work either. Worked fine with a lower version of WP.
We are all having problems. Some things work and others don’t. I would down grade to another WP version but I have never done that so I’ll have to wait.
I was able to find the answer and fix the problem for now. For anyone who doesn’t like the current “From Price Range” on Woocommerce, here is a fix but remember if you upgrade the plugin the code will disappear and you will need to fix it again. This code is for when you are using variations. The lowest price will show. Instead of saying “From $1-$10”, it will now show $1.00. This code also changes the shop overview page so the lowest price will show.
Put the following code in your functions.php page of your theme.
// Use WC 2.0 variable price format, now include sale price strikeout
add_filter( ‘woocommerce_variable_sale_price_html’, ‘wc_wc20_variation_price_format’, 10, 2 );
add_filter( ‘woocommerce_variable_price_html’, ‘wc_wc20_variation_price_format’, 10, 2 );
function wc_wc20_variation_price_format( $price, $product ) {
// Main Price
$prices = array( $product->get_variation_price( ‘min’, true ), $product->get_variation_price( ‘max’, true ) );
$price = $prices[0] !== $prices[1] ? sprintf( __( ‘ %1$s’, ‘woocommerce’ ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );
// Sale Price
$prices = array( $product->get_variation_regular_price( ‘min’, true ), $product->get_variation_regular_price( ‘max’, true ) );
sort( $prices );
$saleprice = $prices[0] !== $prices[1] ? sprintf( __( ‘ %1$s’, ‘woocommerce’ ), wc_price( $prices[0] ) ) : wc_price( $prices[0] );if ( $price !== $saleprice ) {
$price = ‘‘ . $saleprice . ‘<ins>’ . $price . ‘</ins>’;
}
return $price;
}Also need to have the shop page and any subcategory page just show the lower number not a range.
-
AuthorPosts