Forum Replies Created
-
AuthorPosts
-
October 4, 2018 at 3:07 pm in reply to: input element, type of "checkbox", has no text in label #1017930
Hi,
Awesome! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelOctober 4, 2018 at 3:05 pm in reply to: Button onclick event problem (including tracking codes and pixels) #1017927Hi,
Yes, I was referring to the gtag manager because you’re using the gtag manager snippet instead of the google analytics library. If you want to implement the google analytics library, please refer to the following docs.
// https://developers.google.com/analytics/devguides/collection/analyticsjs/
// https://developers.google.com/analytics/devguides/collection/analyticsjs/eventsYou should use the “ga” function instead of “gtag” tracker.
Best regards,
IsmaelHey hex80,
Thank you for using Enfold.
The inline styling of the tab content or closed items are missing. The css “display” property should be set to “none” for closed items. Did you modify any of the theme files? Please deactivate the plugins temporarily and then check the page again.
Best regards,
IsmaelHi,
Try to set the opacity and scale of the timeline icons directly.
.responsive #top .avia-timeline-vertical .milestone_icon { transform: scale(1); opacity: 1; }Best regards,
IsmaelHey Andreas,
Thank you for using Enfold.
You can edit the top bar or header meta in the Advanced Styling panel. Edit the “Small bar above Main Menu” element. You can also modify the main menu element there.
Best regards,
IsmaelOctober 4, 2018 at 6:44 am in reply to: images in rows jumping and showing white background at certain screen sizes #1017706Hey FZKFranziska,
Thank you for using Enfold.
Make sure that the images in the grid have exactly the same sizes. Some of the images are slightly different from the others — a few of them are 2120x1415px while the others are 2119x1415px.
Best regards,
IsmaelOctober 4, 2018 at 6:38 am in reply to: Smart Area (Smart Areas / predefined blocks of page builder) #1017704Hi,
but a few things like the contact form are not displayed if i use this element.
This should help you fix the code block issue.
// https://kriesi.at/support/topic/code-block-not-working-with-page-content/#post-1017146
Best regards,
IsmaelOctober 4, 2018 at 6:27 am in reply to: input element, type of "checkbox", has no text in label #1017697Hey dellato,
Thank you for using Enfold.
Edit the includes > helper-privacy.php file and then look for this code around line 87:
$output .= '<label>';Replace it with:
$output .= '<label for="'.$cookie.'">';Best regards,
IsmaelHi,
You need to modify the includes > related-posts.php file for that. Use the same get_posts query as the filter above on line 75.
$my_query = get_posts( array( 'tag__in' => $tag_ids, 'post_type' => get_post_type($this_id), 'showposts'=>$postcount, 'ignore_sticky_posts'=>1, 'orderby'=>'rand', 'post__not_in' => array($this_id)) );You will also need to replace $tags (line 58) to get the author info or id instead.
$tags = get_post_field( 'post_author', $this_id );And change the subsequent logic base on the author info.
Best regards,
IsmaelHi,
I modified the lightbox script in the functions.php file. The popup or lightbox is working properly now. Unfortunately, I can’t assure you that the form inside the lightbox is going to work as expected.
function ava_iframe_lightbox_inline() { ?> <script type="text/javascript"> jQuery(document).ready(function() { jQuery('.button_row_lightbox a').magnificPopup({ items: [ { src: 'https://app.acuityscheduling.com/schedule.php?owner=16684187', type: 'iframe' // this overrides default type }, ], midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href. }); }); </script> <?php } add_action('wp_head', 'ava_iframe_lightbox_inline');Best regards,
IsmaelHi,
Is it working properly when you disable the columns’ animation?
Best regards,
IsmaelHi,
Add the “tax_query” parameter to the query.
function avia_add_all_breadcrumb_parent() { $args = array('posts_per_page' => -1, 'post_status' => 'any', 'post_type' => array('portfolio'), 'tax_query' => array( array( 'taxonomy' => 'portfolio_entries', 'field' => 'term_taxonomy_id', 'terms' => array(26, 25, 24) ) )); $articles = new WP_Query( $args ); foreach($articles->posts as $article) { update_post_meta($article->ID, 'breadcrumb_parent', 1980); } wp_reset_postdata(); } add_action('wp_head','avia_add_all_breadcrumb_parent');Replace the portfolio category ids in the “terms” parameter inside the “tax_query” with the id of the categories in your installation.
Best regards,
IsmaelHi,
Thanks for the update. The icon is placed inside the sidebar. This sidebar is hidden on mobile devices by default. Use this css code to redisplay the sidebar on smaller screens.
@media only screen and (max-width: 767px) { .responsive #top #main .sidebar { display: block; } .responsive #top #main .sidebar .inner_sidebar .widget { display: none; } .responsive #top #main .sidebar .inner_sidebar .widget_custom_html { display: block; } }Best regards,
IsmaelHi,
The “order” and “orderby” settings are already available in the Portfolio Grid panel. Just scroll at the very bottom of the element’s panel. Do you need to sort your portfolio items based on the custom field? Try to use the “avia_post_grid_query” filter to adjust the “orderby” parameter. It should be set to “meta_value”.
// https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Best regards,
IsmaelOctober 4, 2018 at 3:35 am in reply to: Same browser tab opening for specific tab in a tab section. #1017649Hi,
Thanks for the update. By default, you cannot open a tab sub section with a custom link. You need to create a custom script for that.
// https://kriesi.at/support/topic/hotspots-with-anchor-links-to-tabs-section/#post-896815
Replace this line:
scrollToTab( '#top .iconbox_top a', 'click' );with this:
scrollToTab( '.avia-image-overlay-wrap a', 'click' );Best regards,
IsmaelHi!
Where do you see the error? Did you put it in the functions.php file?
Best regards,
IsmaelHi!
I’ve forwarded the issue to the team.
Yes, I do have an old iPad but you can’t inspect the website there. You’ll need a mac computer or laptop in order to do that.// https://www.hongkiat.com/blog/ios-debugging/
Best regards,
IsmaelHi,
Thanks for the update. Did you add those text or content in the “Additional Portfolio Settings” > “Add Preview Text” editor? Please note that the AJAX preview can only display the content from the “Additional Portfolio Settings” editor. It will not display the content of the default editor.
Best regards,
IsmaelHi,
Thanks for the update.
Please post the login url in the private field.
What is the login url? I tried “wp-admin” and “wp-login” but both of these urls are not working.
Best regards,
IsmaelHi,
I actually disabled a few lines of codes in the functions.php to remove some errors but I think the issue lies on the unwanted template files in the child theme. Please do the restore and then check if the template files are still in the child theme folder.
Best regards,
IsmaelHi,
Thanks for the update.
Replace the previous modification with the following css code to center align the logo on mobile view.
@media only screen and (max-width: 767px) { .responsive #top .logo > img { position: relative; left: 50%; transform: translate(-50%, 0); } .responsive #top .logo { width: 80%; } }I’m not really sure what’s going on with the socket. Did you check it on an actual mobile device?
Best regards,
IsmaelHi Roger,
I’m sorry if we can’t help you this time. I’m sure you’ll find a good developer on Codeable.
Please feel free to open a new thread if you need anything else.Best regards,
IsmaelHi,
Thanks for the update. I’m not really sure why the video element is not working, so I provided a workaround in the same page. (see private field)
In a codeblock, you can add this markup.
<div class="avia-video avia-video-16-9 av-lazyload-immediate av-lazyload-video-embed" itemprop="video" itemtype="https://schema.org/VideoObject"> <div class="avia-iframe-wrap"><iframe width="1500" height="844" src="https://www.youtube.com/embed/G0k3kHtyoqc"> </iframe></div> </div>Just change the value of the src attribute and make sure that the video url format is “embed” instead of the default “v” query parameter.
https://www.youtube.com/embed/G0k3kHtyoqcBest regards,
IsmaelOctober 3, 2018 at 8:20 am in reply to: On Blog Posts Page, only 1st post has Read More but not content #1017389Hi,
Glad to hear that you’re enjoying the theme!
You can actually insert the same elements on a default editor by using the shortcode wand or the shortcode generator, so you don’t really need to use the advance layout builder for your posts. If you really need to, you can always add an excerpt manually in order for these posts to display something on the blog overview page.
The forum doesn’t have a screenshot functionality by default but you can always use third party tools like imgur or dropbox.
You can review our theme and show your support here: https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
You can try this code on the functions.php file to set the og:image manually.
add_action('wp_head', 'ava_add_og_image'); function ava_add_og_image() { if(has_post_thumbnail()) { $featured_img_url = get_the_post_thumbnail_url(get_the_ID(),'full'); echo '<meta property="og:image" content="'.esc_url($featured_img_url).'" />'; } }I’m not sure why the image meta is not there on the home page.
Best regards,
IsmaelOctober 3, 2018 at 7:41 am in reply to: Can I get rid of Black Bars on YouTube Video and Personalize Contact Form? #1017381Hi,
Check for the formID value inside the $class parameter.
if($class->formID == 1) { // this is the first contact form } if($class->formID == 2) { // this is the second contact form }If that is not working, try this:
if($class->form_params['avia_formID'] == 1) { // this is the first contact form } if($class->form_params['avia_formID'] == 2) { // this is the second contact form }Best regards,
IsmaelOctober 3, 2018 at 7:30 am in reply to: Lighbox issue – pictures shown which do not belong to post #1017374Hi,
I can’t reproduce the issue on the staging site. Please try to remove the browser cache or do a hard refresh prior to checking the page. (see private field)
Best regards,
IsmaelHi,
Did you test it on a default theme? The same shortcode is not working on a default editor. (see private field)
Please contact the plugin author for additional help.Best regards,
Ismael -
AuthorPosts
