Forum Replies Created
-
AuthorPosts
-
February 23, 2015 at 10:15 pm in reply to: Woocomerce single product page not displaying on mobile (Iphone) #401028
Hey Leorodriquez!
Try adding this to your custom CSS.
.single-product-summary { overflow: visible !important; }Cheers!
ElliottHey!
I checked your page but I only see H3 in your four columns. It’s not that big of a deal for your homepage. I suppose an H1 with “Francity – Franchise Experts” somewhere in your homepage would be good but the question would be where do you put it? You do not want to hide it with CSS or other methods because this might hurt your SEO.
If it was me I would just leave it alone. It’s important that your actual pages and posts have an H1 which acts as the “title” of the page as this is good for SEO. We already set the title of these so you do not need to worry about that.
If there is a specific page your having trouble with then send us a link to it and we’ll take a look.
Best regards,
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
Hey berndrepenning!
Send us a link to your page and deactivate all of your plugins and we’ll take a look.
Cheers!
ElliottHi!
What happens when you change lines 485 – 490 in /enfold/framework/php/class-breadcrumb.php from this.
foreach($trail as &$link) { $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link); $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link); $link = '<span typeof="v:Breadcrumb">'.$link.'</span>'; }To this.
$i = 0; $len = count($trail); foreach($trail as &$link) { $link = preg_replace('!rel=".+?"|rel=\'.+?\'|!',"", $link); $link = str_replace('<a ', '<a rel="v:url" property="v:title" ', $link); if ( $i == $len - 1 ) { $link = '<span>'.$link.'</span>'; } else { $link = '<span typeof="v:Breadcrumb">'.$link.'</span>'; } $i++; }Cheers!
ElliottHey!
You need to do what I suggested in my previous post. If I remember right the slug for the events is “tribe_events”. So the code would look like this.
add_filter('avf_builder_boxes', 'avia_register_meta_boxes', 10, 1); //Add meta boxes to custom post types function avia_register_meta_boxes($boxes) { if(!empty($boxes)) { foreach($boxes as $key => $box) { $boxes[$key]['page'][] = 'tribe_events'; } } return $boxes; }Best regards,
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
Hi!
Try adding this.
#top #header .sub-menu { max-width: 100% !important; }But keep in mind that if you do this then you are limiting how large you can have the menus. Also the 3rd level and deeper menus will have issues.
Regards,
ElliottFebruary 23, 2015 at 9:15 pm in reply to: ModernTribe Events Calendar – Map Width – mistakenly 46 % #400998Hi KolbeGT!
Add this to your custom CSS.
.tribe-events-meta-group-gmap { width: 100% !important; }Cheers!
ElliottHey kmue!
Are you using some styling rules in Dashboard > Enfold > Advanced Styling?
Go ahead and add this to your custom CSS to override it.
#footer a { color: #aaaaaa !important; }Regards,
ElliottHi pegasso4444!
You can create a feature request for that here, https://kriesi.at/support/enfold-feature-requests/.
But instead it would be a lot easier to just add this to your Quick CSS field.
body { }If you have something specific you want to do then send us a link to your page and take a screenshot highlighting the areas your trying to change and we’ll give you some CSS to use.
Cheers!
ElliottHey!
Can you send us a link to your site so we can take a look?
You can target just portfolio pages with CSS like so.
.single-portfolio { }But we need a link to your site to see how your using the background.
Best regards,
ElliottHi Lev!
It looks like you can do that with the LayerSlider. Read up on the documentation here, http://www.docs.purethemes.net/sukces/layerslider/documentation/documentation.html.
We already include this plugin in Enfold so you can start creating sliders in Dashboard > LayerSlider WP.
Best regards,
ElliottFebruary 23, 2015 at 7:22 pm in reply to: adding the avia layout builder to Custom post types #400937Hi!
Try this out, https://kriesi.at/support/topic/overriding-functions-in-a-child-theme/#post-167093.
If you want to add them to more than one CPT then keep adding new lines like so.
$boxes[$key]['page'][] = 'people'; $boxes[$key]['page'][] = 'places'; $boxes[$key]['page'][] = 'stores';Best regards,
ElliottHi potentialindia!
I sent you a test email. Double check that the address your using is correct with no typos and that the message is not in your spam folder.
This is usually a problem with the server so I would contact your hosting provider and let them know about this.
You can install this plugin, https://wordpress.org/plugins/wp-smtp/, and send a test PHP email to see if it arrives. If your hosting provider has an SMTP server then you can have the plugin switch WordPress to use SMTP mail instead of PHP mail.
Cheers!
ElliottHi uvanlj1!
Add this to your custom CSS.
@media only screen and (max-width: 959px) { nav.main_menu { display: none !important; } #advanced_menu_toggle { display: block !important; } }Regards,
ElliottFebruary 23, 2015 at 7:00 pm in reply to: Single blog page Big Preview – can I keep original image ratio/proportions? #400925Hi!
You can set it to full so it loads the image in it’s original dimensions but it sounds like your trying to do some CSS editing? Send us a link to the exact page and take a screenshot highlighting what your trying to do so we can get a better idea.
Cheers!
ElliottHi cworkman1!
The different sized images are for use in different areas of your theme. The blog and portfolios for example use different sized images to make sure everything stays sharp.
You do not have to worry, WordPress is not going to load all of them when someone views your page. It will only load the specific sizes that are requested.
Cheers!
ElliottHey!
It’s possible but it would take a lot of time and code to implement so it would have to be considered custom work. It’s a cool feature so I would consider creating a feature request, https://kriesi.at/support/enfold-feature-requests/, and we may see something get added in a future update.
Or as an alternative you could try finding a slider plugin that has this functionality. I do not know of any that I can recommend though.
Regards,
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
February 23, 2015 at 6:47 pm in reply to: images on easy slider look cropped on mobile device #400909Hey Me.llamo!
It’s from this code your using.
.avia-slideshow li img { max-width: 520px !important; min-height: 380px !important; }Remove the min-height.
Cheers!
ElliottHi!
To get that type of layout you’ll need to set your page to full width (no sidebar) and then use the widget area shortcode with our columns.
Kind of like so..
1/3 + 1/3 + 1/3 (with widget area inside) color section 1/3 (with widget area inside ) + 1/3 + 1/3 color section etc etcRegards,
ElliottFebruary 23, 2015 at 6:40 pm in reply to: Add to cart quantity buttons disappeared after woocommerce update #400902Hi!
Try contacting WooCommerce support, https://support.woothemes.com/hc/en-us, and ask them about it. They created the plugin so they will probably know exactly which setting you need to change.
If you can figure out which setting or plugin is causing the problem is then please share it here.
Cheers!
ElliottHey!
The login is not working for me. Is the information correct?
Cheers!
ElliottHey!
Sorry, not sure if it was clear or not but when I said “slow” I meant increase it to 2000 – 3000.
Hmm. I still can’t reproduce it on my XMAPP setup so I’m not really sure what to tell you here. If your using a vanilla copy of Enfold with no customizations and no plugins then it shouldn’t be happening on your site.
I don’t think it’s going to matter but try creating a copy of your theme settings in Dashboard > Enfold > Import/Export and then hit the “Reset All Options” button to see what happens.
Regards,
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
February 23, 2015 at 6:27 pm in reply to: Adding cart, wish list & login on top of the page (Enfold & WooCommerce) #400887Hey Damian!
I checked your link but you don’t appear to be using Enfold. Activate Enfold and let us know when your done.
Cheers!
Elliott-
This reply was modified 10 years, 11 months ago by
Elliott.
February 23, 2015 at 6:24 pm in reply to: Setting up the blog to automatically post in chronological order #400882Hey!
Go ahead and do steps 1 + 2 in my previous post and send us a WordPress login so we can get a better idea of what’s going on.
Best regards,
ElliottHi!
I viewed your link but you don’t appear to be using Enfold. Go ahead and activate Enfold and take a screenshot highlighting what your trying to do so we can get a better idea.
Best regards,
ElliottHey!
Add this to your custom CSS.
nav.main_menu { font-weight: 600 !important; }As for the titles are you referring to the heading tags? Or perhaps the main title? You can target them like so.
h1, h2, h3, h4, h5, h6 { font-weight: 600 !important; } .main-title { font-weight: 600 !important; }Best regards,
ElliottFebruary 23, 2015 at 6:17 pm in reply to: Second Sidebar Pages Question – moving code to child theme #400878Hey RobWu!
What is the code you used?
Regards,
ElliottHey amiraliz!
I would try contacting them first and ask them if it is not compatible with a certain theme if you can get a refund later. Or perhaps they have a test version that you can try.
If anyone has used this plugin before then please share or offer recommendations to other plugins.
Cheers!
ElliottFebruary 23, 2015 at 6:05 pm in reply to: Contact form Issue when submitting by Mobile (cell) device #400862Hey!
What happens when you remove the page redirect and have the success message display via AJAX?
Regards,
ElliottFebruary 23, 2015 at 5:48 pm in reply to: Enfold Theme in conflict with Ubermenu and Nextgen Pro Lightbox #400837Hi Burghard!
Not sure if we will be able to help you here but send us a link to your page and take some screenshots highlighting the problem and we’ll take a look.
Regards,
Elliott -
This reply was modified 10 years, 11 months ago by
-
AuthorPosts
