Forum Replies Created
-
AuthorPosts
-
December 9, 2017 at 11:03 am in reply to: LayerSlider: automatically scrolling down after the last slide #886759
Hey auserde,
Sorry, that feature is not available yet. But you could create a large button on your last slide to encourage visitors to go to the next section.Best regards,
MikeHi,
Your error is that “Your site URL is not authorized” you will need to go to your Google Map API settings and enter your correct url. Or try setting your restrictions to none temporary to get your map working then retry setting you url restrictions.
Note that it can take an hour for your changes to take effect, so only make one change and save, then clear any cache plugin and wait.
I also see you have the “Google Maps API warning: RetiredVersion” because you are using Enfold v4.0.3, please update to v4.2 to solve.Best regards,
MikeDecember 9, 2017 at 10:37 am in reply to: Adding padding to move burger menu on mobile phone #886755Hey vic98,
Try this code in the General Styling > Quick CSS field:@media only screen and (max-width: 767px){ .responsive #top #wrap_all .main_menu { top: 15px!important; }}
adjust the number to suit.
Best regards,
MikeDecember 9, 2017 at 10:34 am in reply to: Anchor link / Section ID for Revolution Slider and Widget in footer #886753Hey KingFilly,
I didn’t see a slider below the fold, but,
Please try adding your anchor in a code block above your element, and a different one in your widgets in your footer to anchor the bottom of your page.Best regards,
MikeHey Karl,
Try this code in the General Styling > Quick CSS field:.av-masonry-entry-content.entry-content {font-size: 24px !important; }
If this doesn’t work please include the url to the page in question so we can take a closer look.
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeDecember 9, 2017 at 10:05 am in reply to: Wrong Widgets/Texts in Footer after costumized Widget-Area #886744Hi,
Glad to hear, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
To add text next to the logo for only one page only in mobile, I suggest creating a custom widget.
Try adding this code to the end of your functions.php file in Appearance > Editor:add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { if( is_page( 644 ) ) { dynamic_sidebar( 'header' ); } }
**Note the “is_page (644)” you will need to change it to the page you want the widget to show on.
If you’re using a layout with the menu below the header area use this code instead:add_action( 'ava_main_header', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { if( is_page( 644 ) ) { dynamic_sidebar( 'header' ); } }
And then navigate to Dashboard > Appearance > Widgets and create a new widget area named header and add some widgets to it.
Then add this code in the General Styling > Quick CSS field:#header .widget { left: 50%; padding-top: 0; position: absolute; top: 0; transform: translate(-50%); z-index: 999; }
Adjust the css for your page, and then we can add a rule to hide the widget for desktops after you have this setup.
Best regards,
MikeHi,
The reason the child theme was giving an error that the parent theme was corrupt was because in the stylesheet of the child theme the Template was “Enfold” when it should have been “enfold”.
I have removed the rules in “CSS rapido” and the child theme is applying them now, and your error is gone. Please check.Best regards,
MikeHi,
When you are using a child theme as the activate theme and you update the parent theme your custom changes will not be lost.
Using the child theme is the best way to go.
I’m not sure about the user name, do you mean the WordPress user name, or the license user name? Can you please take a screenshot of the field you are looking at and post it in the Private Content area so I can advise correctly?Best regards,
MikeDecember 8, 2017 at 12:45 am in reply to: I need the feautered image of post to be in mobile version too. #886307December 8, 2017 at 12:42 am in reply to: Sort Options: Border around the "active" sort option #886304Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Please create a screenshot for what you would like to see, so we can understand better.Best regards,
MikeHi,
Your code would remove many other items, after trying my code did you clear browser cache and any cache plugin? Can you please include a admin login in the private content area so we can take a closer look.Best regards,
MikeHi,
Yes that would be the right place, sounds like your error is from the new WP error checking function. Try making the change in cPanel, if you still have issues you can remove the code though cPanel afterward.Best regards,
MikeHi,
Sorry, I’ve been advised by senior members that this sale is over.Best regards,
MikeHey Angelo,
Please try#advanced_menu_toggle, #advanced_menu_hide {display:none!important;}
Best regards,
MikeDecember 7, 2017 at 4:13 am in reply to: I need the feautered image of post to be in mobile version too. #885885Hi,
Thank you for the video, but the point I was trying to make was that many of the screen sizes that your method produces are not used in real world devices. Such as your smallest 265px, to achieve what you want would take some extensive coding. But we can help you achieve screen sizes for devices that your visitors would be using, such as iPhones & Android, here is how your site would look on those devices:
Please see the video in Private Content area.
Thank you again, and I hope this helps.Best regards,
MikeHi,
Please explain in detail what custom css you are trying to apply to your site, also include a admin login in the private content area so we can take a closer look.
We will need to see your site and see why your child theme css is not being applied, or what conflicts are occurring.Best regards,
MikeDecember 7, 2017 at 12:37 am in reply to: How to make a page invisible but not cancel the content #885820Hi,
Glad to help, In your WP back end, when looking at your pages, and you hover over one of them you will see an option for “quick edit”, click that and look for “status” then click that drop down, and you will see 3 options, one is “draft” or “pending review” either will work.
Feel free to ask anything we can help with :)Best regards,
MikeHey Carmine,
When you add a child theme you will need to activate it as your theme. I’m assuming that you downloaded our child theme here
Note that if you have already built your site and are now adding a child theme you will need you export your theme setting from your parent theme so your stylings will show. Please see the link for a video about Moving to a Child Theme.Best regards,
MikeDecember 6, 2017 at 11:43 am in reply to: How to make a page invisible but not cancel the content #885507Hey inuit68,
You can change the page status to Draft or Pending Review, then it will not be seen publicly but you can access the page in your back end.Best regards,
MikeHey Nadlhy123,
Try adding this code to the end of your functions.php file in Appearance > Editor:function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 9998, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 9998, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); } add_action('after_setup_theme','avia_remove_main_menu_flags');
Best regards,
MikeHey Vlad,
Sorry, that feature is not available yet. You would need to remove the one slide from your slider.Best regards,
MikeDecember 6, 2017 at 11:17 am in reply to: Just purchased 2nd Enfold License: Issues uploading to wordpress #885491Hey mikejmellado,
Are you uploading the enfold.zip inside of the themeforest zip? If so this sounds like you may need to ask your host if the PHP ZipArchive Extension is enabled.
Also ask if your PHP setting are like these:
PHP Version: 7.0.x
PHP Time Limit: No limit
PHP Memory Limit: 256M
PHP Post Max Size: 50M
PHP Max Upload Size: 20MBest regards,
MikeHey scottmlogan,
I see that the menu is opening and closing on click in a jumping action, this looks like a conflict and I see you also have a error message in the console for a blackpulp widget. Please try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause. If you see a blackpulp widget, try disabling it also.Best regards,
MikeDecember 6, 2017 at 10:26 am in reply to: style and content changing of the area on top, over the header #885460Hi,
Try this code in the General Styling > Quick CSS field:#top.page-id-1729 .ls-overflow-visible { padding-top: 0px!important; padding-bottom: 0px!important; }
Best regards,
Mike -
AuthorPosts