Forum Replies Created
-
AuthorPosts
-
I don’t think the featured image is an issue anymore.
Many thanks for your help.
This site is now live
Next to “FIND US” you should be able to see a MAP, its not showing. The error that was constantly popping up on the front and backend seems to of stopped now.
Thanks Ismael,
I just need to figure out this now:
“Also, how can I change the featured image dimensions on a single event, its using the correct width but its cropping the height, I think its using the medium sized images in WordPress when I want it to use full-size.”
Excellent, thank you Josue!
Not tested but looks like its the perfect solution!
Many thanks,
Luke
This reply has been marked as private.This reply has been marked as private.Yes.
https://www.google.co.uk/webhp?#q=enfold+different+logo+on+mobiles
A number of different methods are available to achieve this. Google is your friend :-)
Luke
Add code to style.css in your child theme.
Tab Headers:
.js_active .tab {
font-size: 11px;
}Tab content font size is handled within the Enfold Settings, its a global font size setting.
Alternatively you can add this code to your style.css in your child theme:.active_tab_content .tab_inner_content {
font-size: 11px;
}to change the background {highlight} colour of the tab:
div .main_color .tabcontainer .active_tab {
background-color: #000;
}Your site looks great! Good job!
Just to confirm i’ve tried adding the widgets to all the widget areas, Displayed Everywhere, Shop Overview Page etc
Nothing shows apart from the product categories widget.
The price filter also isn’t displaying!
Its not loading on ANY page.
This issue I have is that none of the icons are numbers or letters.
I want my icon list to be numbered 1, 2, 3 etc or maybe A, B, C.
I cannot find any icons that are just a number or letter.
Any advise?
Hi Yigit,
Is there a way to display 3 related products at the bottom of the content area?
Luke
- This reply was modified 9 years, 10 months ago by Luke86. Reason: updating
Hi Ismael,
Sorry for the delay in responding.
Basically my site has a transparent header and the Layer Slider appears behind my logo and menu.
I am looking to implement a similar header on the events pages. The same slider can be used on ALL events pages.
Cheers,
Luke
additionally would this work with enfold:
https://wordpress.org/plugins/wordpress-mobile-pack/
With the use of mobiles and tablets increasing I think this topic will help a lot of ENFOLD users.
I found this, could you advise if any of these methods would work:
Create 2 menus. One for display on mobiles and one as a default for desktops. Add this code in your header.php or you could use a hook in your functions file.
<?php
if ( wp_is_mobile() ) {
wp_nav_menu( array( ‘theme_location’ => ‘mobile-menu’ ) );
} else {
wp_nav_menu( array( ‘theme_location’ => ‘desktop-menu’ ) );
}
?>
Or you could create 2 custom menus and use this code:<?php
if ( wp_is_mobile() ) {
wp_nav_menu( array( ‘menu’ => ‘mobile-menu’ ) );
} else {
wp_nav_menu( array( ‘menu’ => ‘desktop-menu’ ) );
}
?>
Or you could switch themes conditionally:add_filter( ‘stylesheet’, ‘wpsites_change_themes’ );
add_filter( ‘template’, ‘wpsites_change_themes’ );function wpsites_change_themes( $theme ) {
if ( wp_is_mobile() )
$theme = ‘my-mobile-theme’;
return $theme;
}I figured it out.
I deactivated a 404 plugin that I had installed. This plugin had inserted some code into the child theme functions.php file and it was this code that was causing the issue.
Deactivating the 404 plugin didn’t remove this code it had inserted.
the code was:
add_action(‘template_include’, ‘avoid_404_event_titles’, 1);
function avoid_404_event_titles() {
global $wp_query;
if (property_exists($wp_query, ‘tribe_is_event’) && $wp_query->tribe_is_event && $wp_query->is_404)
$wp_query->is_404 = false;
}Please close this ticket.
thanks
If I enable the master theme (not the child theme) the pages work. As soon as I enable the child theme the cart and checkout pages dont work.
Any ideas what might be causing this?
I have downloaded and updated both enfold and woocommerce to the latest versions and still the pages are blank.
I have also deactivated all the plugins and tested and again the pages are blank.
Any ideas what I could do now?
http://www.imagesup.net/pt-1414159661788.png – before – see how there are 4 related products and they appear under the sidebar.
http://www.imagesup.net/pt-15141596624112.png – after – only three related products and they appear on the right.
I added the sidebar by following these instructions – https://kriesi.at/support/topic/single-product-page-sidebar-2/
many thanks
Can I not add some code that will show the same transparant header on ALL events pages?
http://www.o-mills.co.uk/dev/product/secret-trinkets-cream-and-crystal-seahorse/
That is how the product page appears when using the code above in the functions.php in my child theme.
Luke
Could someone please advise if the above code has changed due to the update to Enfold/Woocommerce.
It is no longer working for me and displays everything in a full width column.
Many thanks,
Luke
Delete this please. I have figured it out, its already built in, you guys ROCK.
Also, are you paid for your work here on Kriesi.at?
If not, it would be good to allow people to tip people a couple of dollars for helping!
Yigit, your a superstar, thank you very much.
Can I ask, would it be easy to select which sidebar to show?
I would like to display the “Shop Overview Page” sidebar.
Thanks again,
Luke
If you want to remove references from every single file used in the theme then remove them yourself.
An alternative solution is to use a child theme and edit the style.css file in both the child theme and the parent theme.
Thank you for your responses.
-
AuthorPosts