Forum Replies Created
-
AuthorPosts
-
Hi,
I believe the child theme is in the master Theme Forest file, but you can also get it here
Thanks for telling us the two sections are on the “Our Story” page, I was able to look at the sections and found the css was off a little, so I corrected it, and it now works correctly.
Please clear your browser cache and check.
To remove the “SKU” line on your product pages, please add this css:#top.single-product .product_meta { display: none !important; }Best regards,
MikeHi,
The other day I remember seeing the code blocks, or “placeholders” above on /HomeEsp/ but I don’t see them today, but the backend editor is still getting the “Forbidden 403” error, on admin-ajax.php
which is a very important file, “Forbidden 403” means that something is blocking it from working, please try disabling your plugins and checking the file permissions with the steps above. You could also ask your webhost to look at the server error log and tell you what is blocking the file, but you should first try disabling your plugins because it could be one of them.Best regards,
MikeHi,
Glad to hear, I assume we can close this now, but I like to ask first. Shall we close this then?Best regards,
MikeJanuary 29, 2019 at 3:56 am in reply to: Pushing submission datalayer event with form ajax response #1059876Hi,
To overwrite to contact element, add a directory /shortcodes/ to your child theme,
then copy the /contact/ directory to it with all 3 files in it, contact.js, contact.css, contact.php
so you will have this path: /enfold-child/shortcodes/contact/
Then add this code to the end of your functions.php file in Appearance > Editor:add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }now your child theme element will overwrite the theme element, you can read more here.
Best regards,
MikeHi,
There is a plugin you can use, but Enfold doesn’t work so good with it. Our developers are currently in preparation for the AMP integration. There’s no ETA yet but it will be implemented on the theme in the future.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
I see that some of the images are good, please try adding some more space to the bottom of others.
Please see the screenshot in Private Content area.Best regards,
MikeHi,
Please include a admin login in the Private Content area, so we can be of more assistance.Best regards,
MikeHi,
@teachingwithamy your example code above actually seemed to work correctly, and I don’t see a “little rectangle where the graphic should be at the bottom of the post” but this sounds like a tracking pixel.
I posted in your thread asking for more info, lets continue there.Best regards,
MikeHi,
Can you please link to a test page on your site with a admin login, in the Private Content area, so we can see?Best regards,
MikeJanuary 29, 2019 at 3:03 am in reply to: Sprungmarke wird nicht korrekt angesteuert, in Kombination mit LayerSlider #1059867Hi,
When the header is set to transparent, it is suppose to be transparent when the page begins, and then on scroll have a background color, this way the menu could be seen, please see this example
But I can see that on your site you want it to be transparent all of the time, which I think we can assist with.
Do you want this for all of the pages?
I tried testing some more and see that the sticky menu is still not sticky, I tried disabling your plugins, but that didn’t help, and I created a test page with only color sections, again with no success.
I would like to replace the menu.js file again, and maybe re-upload the theme again to rule out any damaged files. On my install the sticky menu works correctly so your should too.
Please include FTP access in the Private Content area.Best regards,
MikeJanuary 28, 2019 at 2:37 pm in reply to: GravityForms Admin Toolbar Error upon updating to Enfold 4.5.3 #1059640Hi,
Glad to hear, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:span.avia-menu-subtext { color: #000 !important; }Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Glad we could help, I assume we can close this now, but I like to ask first.
Is there anything else we can assist with on this issue?Best regards,
MikeJanuary 28, 2019 at 2:19 pm in reply to: The Events Calendar PRO not working fine on mobile #1059631Hi,
To move the pre-next nav to the bottom, Try adding this code to the end of your functions.php file in Appearance > Editor:function move_event_header_nav(){ ?> <script> jQuery(window).load(function(){ jQuery( '#tribe-events-header:first' ).appendTo( '.tribe-events-loop' ); }); </script> <?php } add_action('wp_footer', 'move_event_header_nav');Best regards,
MikeHi,
Did you want us to look at your “gallery” page to work out similar css? If so please post a link to it.Best regards,
MikeHi,
I’m not sure I see the issue with the header on mobile, Please see the screenshot in Private Content area.
For desktop the header is fixed for me on scroll, what you you mean by zooming?
Please include some screenshots, so we can be of more assistance.Best regards,
MikeHi,
From your image it looks like a matter of some css, but I’d have to examine it to give you a solution.
Here is a list of free webhosts to put it online. Or you could wait until you go live on your server, perhaps you’ll have a couple of questions by then.Best regards,
MikeJanuary 27, 2019 at 9:53 pm in reply to: Pushing submission datalayer event with form ajax response #1059426Hey delphostkp,
Sorry for the late reply, is the dataLayer.push in regards to the Google Tag Manager?
I was able to put together a jQuery script to fire a trigger when the class “avia-form-success” is added the div “ajaxresponse”$(function() { var button = $('.button') , response = $('.ajaxresponse') ; button.on('click', function() { response.addClass('avia-form-success'); $(document).trigger('ajaxAlert'); }); $(document).on('ajaxAlert', function() { alert("The response has been given"); }); });this example gives an alert box popup, but you could replace the “alert” with your “dataLayer.push”
This can be added to the functions.php by wrapping it in a WP function like this:function custom_script(){ ?> <script> (function($){ //your jQuery here })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');Best regards,
MikeHey ovacam,
Sorry for the late reply,
I took a look at your masonry page, but the gallery page was “not found”
For your masonry page, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.av-masonry-entry .av-inner-masonry-content { padding: 2px !important; } .av-masonry-image-container { background-size: contain !important; background-repeat: no-repeat !important; }Please see the screenshot in Private Content area, you will see many images showed at full height, but I recommend trying to upload your images with some blank space at the bottom, like the way “Cancer” is.
Best regards,
MikeJanuary 27, 2019 at 7:54 pm in reply to: The Events Calendar PRO not working fine on mobile #1059415Hi,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 770px) { #tribe-events-header .tribe-events-sub-nav li a { display: block !important; } }Please see the screenshot in Private Content area of the expected results, and Please clear your browser cache and check.
Best regards,
MikeJanuary 27, 2019 at 7:41 pm in reply to: TYPO wird nicht nach den Einstellungen korrekt angezeigt #1059414Hey Andreas,
Entschuldigung für die späte Antwort, ich habe mir Ihre Links angesehen, kann aber nicht feststellen, wo sich der Tippfehler befindet.
Ich habe versucht, mich anzumelden, aber WordFence hat mich gesperrt, bitte zurücksetzen.
Versuchen Sie zu erklären, was der Tippfehler ist. Vielleicht helfen einige Screenshots. Sie können sie in Ihre Dropbox oder Google Drive hochladen und die Links hier einfügen.— Translated with Google —
Sorry for the late reply, I have taken a look at your links, but I can not determine where is the typo is.
I tried to login, but WordFence locked me out, please reset.
Please try to explain what the typo is, perhaps some screenshots would help, you can upload them to your dropbox or Google Drive and paste the links here.Best regards,
MikeHey Antonio,
Sorry for the late reply, but I didn’t find a reliable alternative to “display:none” for your situation. I imagine you could create two pages and redirect your traffic based on screen size to the different pages.
But it may require more research to look into the pros & cons of this method.Best regards,
MikeJanuary 27, 2019 at 6:57 pm in reply to: GravityForms Admin Toolbar Error upon updating to Enfold 4.5.3 #1059405Hey Manny,
Sorry for the late reply, but I was unable to test as GravityForms doesn’t seem to have a free version, do you have a staging site that we can see the error on?
Perhaps it’s a css issue that can be corrected. We don’t support 3ed party plugins, but I could take a quick look for you.
Can you include a screenshot of the error & how it should look?Best regards,
MikeHi,
Sorry for the late reply, please try the steps in this video to copy content from one site to another.Best regards,
MikeHi,
Sorry for the late reply, to move your call to action buttons up,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (min-width: 767px) { .av_slideshow_full .container.caption_container { height: 50% !important; } }Best regards,
MikeHi,
That is great news! Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeJanuary 27, 2019 at 6:05 pm in reply to: Enfold 4.5 Theme Update "Update Failed: Download failed. A valid URL was not pro #1059390Hi,
Glad we could help, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeJanuary 27, 2019 at 6:02 pm in reply to: Timeline / How can I change the size of the icon-circle? #1059388 -
AuthorPosts
