Forum Replies Created
-
AuthorPosts
-
Hi xpoveda!
Thank you for visiting the support forum!
Have you tried adding the revolution slider shortcode inside a Color Section? Add an ID, edit the section then look for the “For Developers: Section ID”. Let’s use the id revo-section for example. Add this on Quick CSS or custom.css to force the color section’s container to full width:
#revo-section .container { width: 100%; }Inside the color section, add a text block with the revolution slider shortcode inside.
Cheers!
IsmaelHey segothe!
Thank you for using the theme!
I’m really sorry but we cannot provide support for third party plugins or scripts as stated on our support policy.. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author. If the login and sign up forms can be place using a shortcode, maybe we can help. A screenshot of what you’re trying to do will help.
Regarding the home icon, you can generate an icon shortcode on a post or page then go to Appearance > Menus. Create a custom link, add the home page url and the icon shortcode as label. Use this on the label field for example, this is a house icon generated using the insert shortcode wand.
[av_font_icon icon='ue821' font='entypo-fontello' style='' caption='' link='' linktarget='' color='' size='40px' position='left' custom_class=''][/av_font_icon]Regards,
IsmaelHi zedduo!
Thank you for using the theme!
Create a new layer then switch to Dynamic content from posts. Add this code to fetch the title and the featured image of the post.
[title]<br>[image]Regards,
IsmaelHi!
Thank you for the update.
I’m sorry about the link. It has nothing to do with the wordpress layer slider version. Please use this for the font:
.av-main-nav > li > a { font-size: 15px; }Please create a text image on photoshop or any image editor that can save an image as PNG format. Create a graphic text with a transparent background then add it as a layer on the layer slider.
Regards,
IsmaelHi!
Thank you for the info.
Please watch the video Yigit posted. If you’re not comfortable with the following steps, please hire a freelance developer to help you update the theme. Regarding the menu or label as you put it, you can go to Appearance > Menus. Create a new menu then set it as Enfold Primary Menu under Menu Settings. The home page or front options should be included on Enfold > Theme Options panel. If you don’t mind, please post the login details here as a private reply. We will create the menu for you and set your home page.
Please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page.
Regards,
IsmaelHi!
Glad you figured it out. If you have any questions, let us know.
Best regards,
IsmaelHi rbruski!
Thank you for using the theme!
Those are nested subpages of a page. You can enable it on Enfold > Sidebar > Page Sidebar navigation. All pages that is a child page of a certain page will be listed on the sidebar. You can also use a Custom Menu widget for that. I’m sorry but we really need to see the actual live website in order for us to know the issue. Please make sure that you’re running the latest version of Enfold which is version 2.7.
Cheers!
IsmaelApril 25, 2014 at 2:28 pm in reply to: How to reduce the fullscreen sliders that open when click on gallery thumbnail? #256090Hey radoslavmitov!
Thank you for using the theme!
Do you mind if we take a look at the actual page with the issue? Do you have another lightbox plugin enabled ? Please post the page url here. We would like to check it.
Best regards,
IsmaelHey!
Glad you figured it out yourself.
Any feedbacks and comments from you are greatly appreciated and the idea of a premium support is nice. You can vote or open a new request on Enfold Feature Request page regarding that matter. :)
Best regards,
IsmaelHi codepantry!
Thank you for using the theme.
You can use jquery to add an id to the button. Edit js > avia.js, add this code at the very bottom:
$('#fullscreen_slider_0 .avia-slideshow-button').attr('id', 'BUTTON-ID');Regards,
IsmaelHey codepantry!
Thank you for using the theme!
We are not certain of what it is you’re trying to accomplish. If you don’t mind, please post a screenshot of what you’re trying to do. We will give you a proper response once we have a better understanding of the issue.
Cheers!
IsmaelHey OytunYalcin!
Thank you for using the theme!
Please try this on Quick CSS or custom.css:
#top .avia-content-slider { -webkit-transform-style: flat; }Best regards,
IsmaelHi!
Thank you for the update and we’re sorry that you’re having this issue.
Please try this temporary solution provided by another user, seems to work on his end.
function ava_css_dashboard() { echo '<style type="text/css"> .js .tmce-active .wp-editor-area {color: #555;} </style>'; } add_action('admin_head', 'ava_css_dashboard');We have reported the issue to Kriesi. Please wait for his response.
Regards,
IsmaelHi SwissDesign!
Thank you for using the theme!
Please try this on functions.php:
function ava_css_dashboard() { echo '<style type="text/css"> .js .tmce-active .wp-editor-area {color: #555;} </style>'; } add_action('admin_head', 'ava_css_dashboard');Let us know if it works.
Best regards,
IsmaelHi!
Glad the pages are back!
Please try to change a little bit of settings on Enfold > Theme Options then “Save Changes”. This should refresh the enfold_child.css file. Let us know if it works.
Regards,
IsmaelHi!
Thank you for the update.
Please try this to fix the responsiveness issue:
@media only screen and (max-width: 767px) and (min-width: 480px) { #top #main .avia-section .template-page { width: 428px; } .avia-section.av-minimum-height .container .content { display: block; } }Best regards,
IsmaelHey!
Thank you for the update.
Please use the plugin mentioned on the documentation Yigit suggested then refer to this link for more info on how to properly migrate your website from production to development vice versa: https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684
I recommend to use WP MigrateDB or WP MigrateDB PRO
Regards,
IsmaelHey simonac!
Thank you for using the theme!
Please try this:
function bp_dtheme_activity_secondary_avatars( $action, $activity ) { switch ( $activity->component ) { case 'friends' : // Only insert avatar if one exists if ( $secondary_avatar = bp_get_activity_secondary_avatar() ) { $reverse_content = strrev( $action ); $position = strpos( $reverse_content, 'a<' ); $action = substr_replace( $action, $secondary_avatar, $position); } break; } return $action; } add_filter( 'bp_get_activity_action_pre_meta', 'bp_dtheme_activity_secondary_avatars', 10, 2 );We would like to see an example of the page where the avatar is showing.
Regards,
IsmaelApril 25, 2014 at 11:39 am in reply to: Blog page still displays full length instead of excerpts #256035Hi!
Thank you for the update.
Please let us know if it works. Make sure that you re-create the blog menu item on Appearance > Menus using the newly created page. If it doesn’t work, please post the login details here as a private reply. We would like to check it.
Cheers!
IsmaelApril 25, 2014 at 11:26 am in reply to: Images not working/showing up in preview or on page (Enfold) #256032Hi!
Thank you for the update.
They are indeed broken. I uploaded an image on a post. http://www.thewinecountryhomes.com/wp-content/uploads/2014/03/Abducted-46.jpg
Can you please check if the image is present on the folder? Please go to wp-content/plugins folder then rename or remove all unused plugins. Test the media uploader again after. Another thing that you can do is to edit wp-config.php file on wp root directory, add this at the very bottom:
define( 'UPLOADS', 'wp-content/'.'uploads' );You might also want to increase the wordpress php memory limit to at least 128M because you might experience issues when using the Advance Layout Builder. This is usually due to the builder timing out because of a memory limit in your server environment. The first thing you can do to fix this is to add the following lines in your wp-config.php file located at the root of wp directory:
define( 'WP_MEMORY_LIMIT', '128M' ); define( 'WP_MAX_MEMORY_LIMIT', '256M' );You can also contact your host if you’re not comfortable doing the adjustments yourself. Refer to this link for more info: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Best regards,
IsmaelHey!
Thank you for using the theme.
Do you mind if we take a look at the actual website? You can place a screenshot using imgur, dropbox, clipular etc.
Cheers!
IsmaelHey!
We’re really sorry that you’re experiencing this issue.
There are some cases before about PHP version FastCGI causing issues somehow and switching to 5.3.28 CGI (Stable) may fix the problem. Please contact your host about that. If possible please upgrade to PHP version 5.4. I hope it fix the issue.
Regards,
IsmaelHi!
Thank you for using the theme!
We tested this on our end and it works fine. Please make sure that you didn’t specify a position on Styles panel because their position will be set to absolute. You need to add this on Custom styles field:
position: relative;This is the code that we used:
<h1>THIS IS AN H1</h1><br> <h2>BELOW THE H1</h2>This is the screenshot:

Did you install the layer slider as a standalone plugin?
Please download the theme again from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
IsmaelHey!
Thank you for using the theme!
Did you migrate the test site to this domain http://www.socacom.fr ?
Note that all theme options are saved on the database so it is essential that the database remain intact after the migration. Please use this plugin to properly transfer the website and all the media files associated with it. WP MigrateDB or WP MigrateDB PRO
Refer to this link for more info: https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684
Cheers!
IsmaelHi!
Thank you for the update.
Please edit the svg file on a text editor then look for all the width and height attribute. Remove them or set the width to 100%.
Cheers!
IsmaelHi Paul!
Thank you for using the theme!
Please enclose the descriptions on a container. Something like this:
<div class="group-benefits-description">Provide compliance service for: Affordable Care Act (ACA), Employee Retirement Income Security Act (ERISA), Internal Revenue Service (Premium Only Plan, Flexible Spending Account (FSA), Consolidated Omnibus Budget Reconciliation Act (COBRA), Centers for Medicare Medicaid Services (CMS). * Review of details on these services is required.</div>Add this o Quick CSS or custom.css:
div.group-benefits-description { margin-left: 20px; }Regards,
IsmaelHi!
Glad it is working now.
When you search the same topic over the forum, you’ll see that updating the theme files or commenting then uncommenting the error line mentioned above fixed the issue for all of them. We’re not entirely certain why it’s happening but luckily it can be fix.
Cheers!
IsmaelHey remix1998!
Thank you for the info.
Do you mind if we take a look at the website? Please try to deactivate all plugins, especially the TinyMCE Advanced plugin, see if that helps.
Best regards,
IsmaelApril 25, 2014 at 10:09 am in reply to: My edit type in text box is showing up as invisible when i am adding text #256003Hi!
@phausner: Thank you for the info but you’re using a very old version of the theme, version 2.1. Please download the latest version from your themeforest account then update the theme via FTP. This should fix the issues with WP 3.9. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
@switchplus: Thank you for using the theme. Please post the website url here. Make sure that you’re running the latest version of Enfold, version 2.7.Best regards,
IsmaelHey!
Thank you for the link.
You can add a unique selector for each Avia Elements. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
add_theme_support('avia_template_builder_custom_css');Edit the text block then scroll below, add a Custom Css Class. Let’s use textblock-1 for example. Save then update the page. Add this on Quick CSS or custom.css:
div.avia_textblock.textblock-1 { position: relative; top: 10px; }Regards,
Ismael -
AuthorPosts
