Forum Replies Created
-
AuthorPosts
-
Hey!
yes, i am making the browser smaller.
1.) I don’t think users will deliberately resize the browser just to see the issue but this is still a glitch in the script so we have to fix it. We need to know which files or scripts are modified. I’ll ask Nikko to take a look.
2.) Please enable the option because the video will not play on most mobile devices. After enabling the option, please add a background or a fall back image. This image will display on mobile devices instead of the video.
Regards,
IsmaelHey!
The excerpt is not there because you’re using the advance layout builder for the post. Please edit the post then enable the Excerpt from the Screen Options. Add the excerpt manually. As an example, we edited the following post.
// http://mafficlinics.com/wp-admin/post.php?post=11130&action=edit
Look for the Excerpt box.
Cheers!
IsmaelHi!
Thank you for the update. We edited the pages a bit and you’ll notice that there are additional color sections wrapping the elements. Please remove browser cache before checking the page.
Best regards,
IsmaelHi!
UPDATE: Remove the filter that we suggested previously then copy the latest filter above. The error occurs because the functions are duplicated.
Best regards,
IsmaelHey!
Thank you for the update.
I visited the category pages that you provided while logged in as a “wholesale” customer and the “Du kan bestille på følgende måder.” text from the archive-product.php file is displaying. However the actual products are not there which means that the the account is not recognized as a wholesale customer. It works if I disable the WooCoomerce > Wholesale Prices > Only Show Wholesale Products To Wholesale Users option.
Why did you copy the whole WooCommerce template folder? Did you edit every file? Some of these files are probably not updated. Please remove every files but leave the ones that are modified such as the archive-product.php file.
Regards,
IsmaelHi,
What do you mean by “we overwrote some in a child theme”? Are you referring to the author.php, archive.php file etc? I checked the theme files but I can’t find anything wrong with it. I also reconfigured theme .htaccess file but it didn’t fix the issue. Please delete the current theme folder then replace it with a fresh copy.
Best regards,
IsmaelHey!
The theme’s gallery is using a different template and the caption is added as a tooltip by default. You can hire someone to modify the config-templatebuilder > avia-shortcodes > gallery.php file if you want to add the caption as it is. Or contact our partner, Codeable.
// http://kriesi.at/contact/customization
Regards,
IsmaelHi!
I checked the markup of the page but I can’t see the script there. Are you sure that you added it correctly? Please post the login details here so that we can check the functions.php file.
Best regards,
IsmaelHey!
I checked the post on safari and the featured image is displaying. Do you have any kind of extension in the browser? What is your OS and browser version?
Regards,
IsmaelHi!
Did you try the filter first? In the archive.php file, look for the line mentioned above then replace it with:
'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types(), 'post_status'=> array( 'publish', 'private' ) )UPDATE: Remove the filter that we suggested previously then copy the latest filter above. The error occurs because the functions are duplicated.
Best regards,
IsmaelHey!
Please copy the code directly from this forum, not from your email. And please check if there is an existing “ava_custom_script” function in the functions.php file.
Regards,
IsmaelFebruary 2, 2017 at 9:12 am in reply to: I added the blog post with the excerpt + link option but shows the full content #741644Hi!
Thank you for the update. Please set the Enfold > Blog Layout > Blog layout settings to “Use the advance layout builder…”. Edit the blog page, insert the blog post element then configure the settings.
Cheers!
IsmaelFebruary 2, 2017 at 9:09 am in reply to: E-mail autoresponder HTML footer is messed up after I put it in the contact form #741642Hi!
Thank you for using Enfold.
How does it supposed to look like? The styles are probably stripped off or it is being overridden by the email service site. I’m sorry but the theme has no control over the default styling of the elements in the email site.
Best regards,
IsmaelHi!
Did you try our suggestions above? We created space between the paragraphs by pressing the “enter” key while in the Visual editor.
// http://www.lowcarbx.com/runde1/
Regards,
IsmaelHey!
Please edit the slides then set the Slide Options > Slide image & thumbnail option. The transition effects are not going to work for the layers.
Regards,
IsmaelHey!
Thank you for the update. And we are very sorry for the late response. I checked the test page but it doesn’t exist anymore. Did you remove it? The previous url is not working either.
Best regards,
IsmaelFebruary 2, 2017 at 8:26 am in reply to: /shop/my-account/orders/ = non responsive page tables breaking on mobile phone #741618Hey!
Please add this in the Quick CSS field to add a scrollbar to the table on smaller screens.
@media only screen and (max-width: 479px) { .responsive table.shop_table { display: block; width: auto; overflow-x: scroll; } }Regards,
IsmaelHey!
This code is not working for me, I tried it.
It is working on our installation. Please provide smaller versions of the images and we’ll apply it in the css above.
Look at this example, I want this. Image is not distorted its just smaller on smaller screens:
Where can I find that page? Yes, the image resizes to the browser width but it’s not full screen either which is the whole point of using a full screen slider. If you don’t need the slider to adjust to the browser screen, please replace it with the full width easy slider.
Cheers!
IsmaelHi!
I checked the screenshot but it’s missing. Please upload it again. Which text are you trying to adjust? The css code above will not do anything because the “.iconbox_content_title” is empty.
Regards,
IsmaelHi!
Please add this css code.
#top .av_toggle_section .activeTitle { background: blue; color: white !important; } #top .av_toggle_section .activeTitle span.toggle_icon .vert_icon, #top .av_toggle_section .activeTitle span.toggle_icon .hor_icon { border-color: #fff; }Adjust the color as needed.
Cheers!
IsmaelHi Michael!
Thank you for using Enfold.
You can block it via robots.txt file but google says that you should not disallow it from being crawled.
// https://webmasters.googleblog.com/2009/10/using-rssatom-feeds-to-discover-new.html
Best regards,
IsmaelHi Mark!
Thank you for using Enfold.
Please add this in the functions.php file.
// trigger comment tab function ava_custom_script() { ?> <script type="text/javascript"> (function($) { function a() { $('.widget_tab_comments').trigger('click'); } $(window).load(function()) { a(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script');Cheers!
IsmaelHi!
The pages look completely the same. Could you please provide a screenshot of the elements or sections with the issue?
Regards,
IsmaelHi!
You need to adjust the position of the css media queries. The css media queries located at the bottom will override the ones above them, that’s why the “1920px” overrdies the “1024px” css media query because it gets more priority over the latter.
@media screen and (max-width: 1920px) { .rut5{ min-height:92px; }} @media screen and (max-width: 1440px) { .rut5{ min-height:115px; }} @media screen and (max-width: 1024px) { .rut5{ min-height:161px; }} @media screen and (max-width: 767px) { .rut5{ min-height:0; }}Best regards,
IsmaelHi!
The green arrow and the overlay remain there.
Please provide a link to the actual page with the image. Maybe, you’re referring to a different overlay object. Or try this in the Quick CSS field:
.image-overlay { visibility: hidden; display: none !important; }Cheers!
IsmaelHey Annie!
Thank you for using Enfold.
1.) Are you using the Blog Posts element? Please set the Blog Content length to “Excerpt”.
2.) Did you switch to the advance layout builder? If you did, you have to insert the Content Elements > Social Share Buttons element manually.
Regards,
IsmaelHi!
Thank you for using Enfold.
1.) Please add the [nolink] tag in the copyright field.
2.) Add the following filter in the functions.php file then go to the Settings > Permalinks panel then click the “Save” button.
add_filter( 'post_type_link', 'ava_remove_custom_slug', 9999, 3 ); function ava_remove_custom_slug( $post_link, $post, $leavename ) { if ( 'portfolio' != $post->post_type || 'publish' != $post->post_status ) { return $post_link; } $post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link ); return $post_link; }Cheers!
IsmaelHi Josh!
Thank you for using Enfold.
The sections are outside the wrap_all or main container, that’s why they are not resizing as they should. Please edit the pages then move all elements or set of elements inside their own color sections. If you’re not sure what to do, please post the login details here and we’ll edit the page.
Regards,
IsmaelHey!
Aside from this modification, you can also try this plugin.
// https://wordpress.org/plugins/hash-link-scroll-offset/
Regards,
Ismael -
AuthorPosts
