Forum Replies Created
-
AuthorPosts
-
November 26, 2014 at 11:11 pm in reply to: Uncaught TypeError: Cannot read property 'url' of undefined #358626
Hi!
If it still happens when all plugins are deactivated then send us a WordPress login and we’ll take a look.
Best regards,
ElliottHey xyzb!
Is it line 35 in the header.php file?
if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';
Yes, the header.php file is a WordPress template so you can copy that file to your child theme folder and edit it there.
Best regards,
ElliottNovember 26, 2014 at 10:48 pm in reply to: Change Blog´s Headline Font Size in Avia "Blog Post list" #358611Hi oestersund!
I’m sorry but I’m not sure what you mean by a.m. headlines. It sounds like your wanting to change the post title font size in the blog layout. Is that correct? If so then you can use this CSS.
.template-blog .post-title { font-size: 30px !important; }
Or if your talking about the “Special Heading” shortcode then you can change the H1 – H6 in the shortcode options to change it’s size.
If that’s not correct then send us a link and let us know which element your trying to change.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
November 26, 2014 at 10:42 pm in reply to: not able to view content when editing page in default editor #358607Hey juliankidd!
Not sure what’s going on there. Try deleting all of the columns you see there and then save the page. If it saves fine then drag the columns over again and place textblocks inside and add the text once more to see if that fixes it.
Best regards,
ElliottHey brandworld!
Be sure to double check your email address and also make sure to check your spam folders and deactivate all plugins while testing.
Other than that it is most likely a problem with the server. Try installing this plugin, https://wordpress.org/plugins/wp-smtp/, and send a test email. If it’s not sending with PHP mail then try SMTP and contact your hosting provider for help in configuring the SMTP information.
Regards,
ElliottHey ymcrodos!
Add this to your custom CSS.
.newsbox .news-time { display: none !important; }
Best regards,
ElliottHi centrix!
Make sure your using Enfold 3.0.4 and then deactivate all plugins. If your still having the problem then send us a WordPress login and set your reply as private and we’ll take a closer look.
Regards,
ElliottHi schoop!
Try increasing the max_input_vars setting in your php.ini file, https://www.virendrachandak.com/techtalk/big-forms-and-php-max_input_vars/, and let us know if that works for you.
Cheers!
Elliott- This reply was modified 10 years ago by Elliott.
Hi!
You can place HTML, CSS, and Javascript inside a codeblock element but not in a textblock element.
Regards,
ElliottHi John!
You can try increasing your memory, http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP. Try 64M.
If that does not work then I would try contacting the plugin authors to see if they have any idea on what it could be.
Regards,
ElliottHi DaraEmerson!
You can download the latest version of Enfold from your themeforest account where the theme was initially purchased.
If you cannot update automatically then it would be best to use FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Cheers!
ElliottNovember 26, 2014 at 10:06 pm in reply to: View Tags order by ID, not by Quantity in Portfolio /Ver Tags por ID,no cantidad #358580Hi WEBMANAGERLTDA!
I checked your link but you appear to be using a theme called “handbook” and not Enfold. Go ahead and switch back to Enfold so we can take a look at the problem.
Regards,
ElliottHey Ignazio!
When I click on the play button the lightbox opens in the full screen and it autoplays inside lightbox. Did you get this fixed?
Are you wanting to embed the video in the page instead of having it open in lightbox?
Cheers!
ElliottHey DeborahJackson!
It doesn’t need an update to work. Go ahead and deactivate all plugins to see if that fixes it. Also make sure that your using the latest version of Enfold, 3.0.4.
It looks like you forgot to include a link.
Cheers!
ElliottNovember 26, 2014 at 9:52 pm in reply to: Making the masonry gallery within a color section automatically slide? #358574Hey Zavok!
Unfortunately that would take a lot of time and code and would have to be considered custom work. The color sections were not designed to be nested inside other elements. You can nest the Masonry inside the layout elements but not inside a slider as there would be too many script incompatibilities.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
November 26, 2014 at 9:46 pm in reply to: Update to 3.0.4: as contact form/google map have vanished #358571Hi cociherrick!
3.0.4 should be available to download from your themeforest account. It’s not displaying there at all? In this case it would be best to contact themeforest support to see what is going on. I remember in the past they had a limit of 5 downloads per item though I’m not sure if they are still doing that or not.
Best regards,
ElliottHey FLQA!
Try this out.
add_filter('avf_builder_boxes', 'add_builder_to_posttype'); function add_builder_to_posttype($metabox) { foreach($metabox as &$meta) { if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout') { $meta['page'][] = 'post'; $meta['page'][] = 'products'; $meta['page'][] = 'reviews'; $meta['page'][] = 'recipes'; } } return $metabox; }
Cheers!
ElliottHey!
1. You can target the sub menus like so.
.sub-menu .current-menu-item .avia-menu-text {color: #fff !important;}
2. Add this to your custom CSS.
.avia-menu-fx { display: none !important; }
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
November 26, 2014 at 9:30 pm in reply to: Media uploading issues after upgrading to wordpress 4.01 and Enfold 3.0.4 #358558Hi!
Thanks for posting your solution karbonato. Definitely keep us updated.
Regards,
ElliottHey Christian!
This would have to be considered custom work but if I was going to do this then I would probably use the “ava_main_header” action. The code would look something like this.
add_action( 'ava_main_header', 'enfold_customization_extra_menu' ); function enfold_customization_extra_menu() { wp_nav_menu( 'theme_location' => 'your_location' ); }
Here is the function for displaying a menu, http://codex.wordpress.org/Function_Reference/wp_nav_menu.
And you would need to register the menu with this function, http://codex.wordpress.org/Function_Reference/register_nav_menu.
Enfold already has two menu areas that display in the header though so I would consider using the “Secondary Menu” if your not already doing so.
Regards,
ElliottNovember 26, 2014 at 9:22 pm in reply to: Comments on Posts – How to reply to a comment / embed #358551Hi onegirlrtw!
Are you referring to “nesting” comments? See here, http://kriesi.at/themes/enfold/2011/03/28/nullam-dictum-felis-eu-pede-mollis-pretium-integer-tincidunt-cras-dapibus-vivamus-elementum-semper-nisi-aenean-vulputate-eleifend-tellus/#comments.
Make sure to click on the “Reply” link when creating a comment and it should be indented.
Regards,
ElliottHey Ben!
Actually it would be a lot easier to use WPML. Without WPML it would take a lot of time and code to pull that off and would have to be considered custom work. If you still want to try it on your own it would be best to hire a freelancer to help you out but you would save much more time and money by using WPML.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
November 26, 2014 at 9:10 pm in reply to: Header Enfold: link logo to another website, height less than 45 px, placing text #358547Hi johnniemeijer!
I believe you already asked these questions here.
https://kriesi.at/support/topic/height-header-less-than-45-pixels/
https://kriesi.at/support/topic/link-logo-to-other-website/Please do not double post.
You can open up the /enfold/includes/helper-main-menu.php file and add text after line 93.
<div class='inner-container'> your content goes here
Regards,
ElliottHey!
Are you sure the demo imported succesfully? After clicking on the demo import image and pressing “Ok” it may take a minute or so to download the demo. Be sure to clear your browser cache after the import completes.
Best regards,
Elliott- This reply was modified 10 years ago by Elliott.
Hi!
I sent you a test email. Let us know if you get it.
I would be sure to double check to make sure there are no typos in your email address and also check your spam folder. Also be sure to deactivate all plugins while testing.
If your still not receiving the emails then it would be best to contact your hosting provider and let them know about this to see what they say. This is usually a problem with the server. I would also install this plugin, https://wordpress.org/plugins/wp-smtp/, and try to send a test email with it. If PHP mail does not work then try contacting your hosting provider for help in configuring SMTP mail within the plugin.
Regards,
ElliottHey Sebastian!
Did you do this? http://kriesi.at/documentation/enfold/replace-the-default-blog-latest-news-title/
Regards,
ElliottHey b00p!
I checked your link but I don’t see the social icons anywhere. Go ahead and add them back in and let us know when your done.
Cheers!
ElliottNovember 26, 2014 at 8:46 pm in reply to: wp-content/themes/enfold/css/dynamic-css.php on line 772 #358532Hey!
Send us an FTP login and we’ll take a closer look.
Cheers!
ElliottNovember 26, 2014 at 8:39 pm in reply to: Problems with enfold google map in enfold v3.04 and wordpress 4.01 #358528Hi infonetscq!
Make sure your using the latest version of Enfold, 3.0.4. That should fix the issue. If your still having problems then deactivate all plugins and send us a link and we’ll take a look.
Best regards,
ElliottHi Jaap!
Yes I notice it too. Perhaps it’s not a valid color code. If you try to change the numbers around you’ll see it automatically snaps to certain areas. What program are you using to get that color?
Cheers!
Elliott -
AuthorPosts