Forum Replies Created

Viewing 30 posts - 19,861 through 19,890 (of 67,469 total)
  • Author
    Posts
  • in reply to: Confusing sorting options in WooCommerce and Enfold #1171705

    Hey Technohead,

    Thank you for using Enfold.

    Looks like some of the text in the select or sort option don’t have any translations yet. Please install the following plugin and try to translate the strings or text manually.

    // https://wordpress.org/plugins/loco-translate/

    Best regards,
    Ismael

    in reply to: Cookie Consent and Google Recaptcha #1171704

    Hi,


    @ideeu
    : Did you set the Enfold > Privacy & Cookies > Default Cookie Behavior settings to the first option? That option will allow the spam protection to work automatically on page load. Unfortunately, it is the only way to keep the spam protection working even without user consent unless you’re fine editing the theme files manually.

    Best regards,
    Ismael

    in reply to: How to change breakpoint on table? #1171697

    Hi,

    Thank you for the info.

    We modified the code in the Quick CSS field a bit and disabled the Performance > File Compression settings temporarily. The table is now responding properly when the screen width is equal or less than 1600px. Please don’t forget to remove the browser cache before checking the page.

    Best regards,
    Ismael

    in reply to: Enfold Preloader #1171695

    Hi,

    @Cloudpro: This is possible, but you have to override the whole avia_preload_screen function in the child theme’s functions.php file, then add a certain conditional function to it — most likely is_product. The said function is located in the functions-enfold.php file around line 13. You can add the condition before returning the output. Example:

    if(!is_product()) $output = '';
    

    or..

    if(!is_product()) return;
    

    Best regards,
    Ismael

    in reply to: Extension or pluggin to write a blog with enfold them #1171694

    Hey OSLO2019,

    Thank you for the inquiry.

    There are posts elements in the builder such as the Blog Posts, Masonry or Magazine elements that can be used to display articles or posts in certain pages. Is that what you need? What do you mean exactly by “modul”?

    Best regards,
    Ismael

    in reply to: LayerSlider WP #1171693

    Hey brunet77,

    Thank you for the inquiry.

    You can set the mobile visibility of the layer slider in the Slider Settings > Mobile panel. Enable the Hide on mobile option and if you want you can also choose to hide the slider based on the current width of the view port.

    Best regards,
    Ismael

    in reply to: question #1171692

    Hey farkas alpar,

    Thank you for your interests in the theme.

    The theme has its own template builder and advance theme options, so you don’t have to look for a different plugin or extension to build the site/s pages.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We modified the code a bit. Please try this one.

    
    
    function avia_change_default_link($loop, $entries)
    {	
    	
    	$opties = get_field('opties', $loop['ID']);
    
    	if($opties) {
    		foreach( $opties as $optie ) {
    			$waarde .= "<li>".$optie."</li>";
    		}
    			
    		$more =  "<div class='beschrijf' itemprop='text'><ul>".$waarde."</ul></div><div class='masonry-more-link-arrow vdwerfknopgrid'><span>ONTDEK</span></div>";
    		$loop['content'] =   avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, '') . $more;
    	}
    	
        return $loop;
    }
    add_filter('avf_masonry_loop_prepare','avia_change_default_link', 10, 2);

    Best regards,
    Ismael

    Hi,

    The dynamic stylesheet is successfully generated but it is being saved in a different directory outside the actual installation.

    /home/domains/vol1/786/2712786/user/htdocs/wp-content/uploads/dynamic_avia
    

    Please make sure that the uploads directory actually points to the folder where the installation is deployed.

    // https://codex.wordpress.org/Plugin_API/Filter_Reference/upload_dir

    Best regards,
    Ismael

    in reply to: Date Meta Data Missing on Blog Post element #1171687

    Hi,

    In a grid layout, the title date will only display when an excerpt i

    Sorry about that. I meant the date or the post meta info will only display when there’s an excerpt. The modification above should change that behavior — allowing the post meta info to display even without the excerpt.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Modifications to Post Slider #1171686

    Hi,

    Thank you for the update.

    1.) Are you using the advance layout builder for your posts? No excerpt will be generated automatically if that’s the case, so you may still have to define the excerpts of the posts manually and adjust the length prior.

    Best regards,
    Ismael

    in reply to: Custom blog shortcode broken #1171685

    Hey Jeannette,

    Thank you for the inquiry.

    The filter provided in the following thread should help.

    // https://kriesi.at/support/topic/trouble-with-the_content-and-advanced-layout-editor/#post-1119884

    This will allow execution of shortcodes that are not directly added in the advance layout builder.

    Best regards,
    Ismael

    in reply to: Enfold and WPML Language mix since WPML 4.3.5 #1171683

    Hi,

    Thank you for the clarification.

    Are you sure that this is the only filter that manipulates the price markup? You might have missed other functions or filters in your plugin.

    We are not really sure if this is going to help, but it’s worth a try. Try to replace line 1961..

    sprintf('%s%s', $prefix, $price);
    

    .. with:

    
      __('From', 'obfv') . ' ' . $price;
    

    You should be able to delete the $prefix variable in the top line. Let’s see if removing the sprintf function will help.

    Best regards,
    Ismael

    in reply to: Enfold and Hustle Pro Plugin #1171681

    Hi,

    Thank you for the update.

    The link is no longer accessible.

    Tunnel 9acdc448.ngrok.io not found

    We usually reply to a thread the next day or within 24 hours. Can you extend the expiry of the link to at least 24 hours so that we still have the chance to check it until tomorrow?

    Again, additional assistance from the plugins developers will help.

    Best regards,
    Ismael

    in reply to: Google reporting /?s= pages in GSC #1171680

    Hi,

    Google will reprocess your whole site or the pages that you’ve asked them to re-crawl, so if they find that the pages with the search query is no longer accessible, then it will be reflected in your search console. Make sure to validate the fix that you have done as described in the documentation. Previously, there is a button that allows to manually mark these errors or warnings as fix, if you already implemented a solution for those errors, but this button is no longer available.

    However, if you really want to add or set the noindex meta tag when the search query is present, try this filter in the functions.php file instead.

    add_filter('avf_set_follow','av_set_nofollow');
    function av_set_nofollow(){
    	if ((is_single() || is_page() || is_home() ) && ( !is_paged() || !$_GET['s'] ))
    		{
    			$meta = '<meta name="robots" content="index, follow" />' . "\n";
    		}
    		else if( is_search() || $_GET['s'] )
    		{
    			$meta = '<meta name="robots" content="noindex, nofollow" />' . "\n";
    		}
    		else
    		{
    			$meta = '<meta name="robots" content="noindex, follow" />' . "\n";
    		}
    	return $meta;
    }

    You may still need to ask Google to re-crawl your site in order for the changes to reflect, or wait for quite a while for them to automatically index your site.

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    We don’t really see the alignment issue on mobile view. We are not able to check it on an actual iPhone X, but the alignment issue should still be visible in a device emulation. Could you give us a screenshot of the error? You can upload the screenshot to imgur or dropbox.

    Unfortunately, we are not familiar with the WooCommerce Conditional Content block, so additional assistance from the plugin developers will help. Please try to ask them about the issue.

    Best regards,
    Ismael

    in reply to: Plugin to share articles #1171677

    Hi,

    Thank you for the update.

    Is there any good way or plugin to share articles with just a picture with text on top?
    I want to share relevant articles, but not as articles at my page. I

    Are you requesting for another kind of modification? We asked because your recent reply doesn’t seem to be related to your original inquiry. Do you need further assistance with your original inquiry?

    Best regards,
    Ismael

    in reply to: Linked Image Overlay #1171676

    Hi,

    Thank you for the update.

    The recent changes in the Quick CSS field is still not included in the dynamic stylesheet. (see private field)

    Can we access the file server? Please post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Hover on overlay and title with blog grid layout #1171675

    Hi,

    Thank you for the clarification.

    Try to add the following snippet in the functions.php to trigger the overlay effect as soon as you hover the post title.

    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
       $('.slide-content').on('mouseover', function() {
          $(this).prev('.slide-image').trigger('mouseenter');
       });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod');
    

    Best regards,
    Ismael

    in reply to: Mobile header dissapeared. #1171674

    Hi,

    Thank you for the update.

    The mobile menu and cart icons are now visible in the site. Is this fixed? Please try to remove the browser cache or view the site on incognito mode.

    Best regards,
    Ismael

    in reply to: How to replace rather than add to enfold sidebar? #1171673

    Hi,

    Thank you for following up.

    You should add it in the child theme’s functions.php file. It will remove the default sidebar navigation in the specified pages.

    Best regards,
    Ismael

    in reply to: SKU field missing under Product Data #1171439

    Hey kellyCraftMedia,

    Thank you for the inquiry.

    Where can we see the issue? Are you referring to the actual SKU field in the product editor? The theme doesn’t really have any function or feature that would remove that field, so it’s probably an issue with another plugin or script. Have you tried to temporarily deactivate the third party extensions of the shop plugin?

    Best regards,
    Ismael

    in reply to: Color Section Won't Display Background Image #1171433

    Hi,

    Alright. Thank you for following up. Please post the login details in the private field and then we’ll inspect the site. Make sure that the Appearance > Editor panel is accessible so that we can edit the files if necessary.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Did you add other script in the functions.php file? Please post the login details in the private field. We’ll try to check the site.

    Best regards,
    Ismael

    Hey mtnet,

    Thank you for the inquiry.

    Try to set the Background Repeat settings of the color section to Stretch to fit. This will automatically resize the background image to cover the whole container.

    Best regards,
    Ismael

    in reply to: Error showing #1171344

    Hi,

    Thank you for the update.

    Try to delete the font manually from the wp-content > uploads > avia_fonts folder. There should be a list of folders inside that directory.

    Best regards,
    Ismael

    in reply to: Strange shortcode behavior #1171343

    Hi,

    Thank you for the update.

    Try to convert the elements into an actual list. We modified the first list as an example.

    <ul style="list-style: none;">
     	<li>[av_font_icon icon='ue812' font='entypo-fontello' style='' caption='' link='' linktarget='' color='#81d742' size='20px' position='left' custom_class='' av_uid='av-51pdyn0'][/av_font_icon]Sold at face value (original price)</li>
     	<li>[av_font_icon icon='ue812' font='entypo-fontello' style='' caption='' link='' linktarget='' color='#81d742' size='20px' position='left' custom_class='' av_uid='av-4jmtlx8'][/av_font_icon]Better availability than English site</li>
     	<li>[av_font_icon icon='ue813' font='entypo-fontello' style='' caption='' link='' linktarget='' color='#dd3333' size='25px' position='left' custom_class='' av_uid='av-3xls858'][/av_font_icon]Difficult to impossible to use for non-residents of Japan</li>
     	<li>[av_font_icon icon='ue813' font='entypo-fontello' style='' caption='' link='' linktarget='' color='#dd3333' size='25px' position='left' custom_class='' av_uid='av-cscs4c'][/av_font_icon]Sells out quickly</li>
    <ul>
    

    Best regards,
    Ismael

    in reply to: Trying to add hover arrow to submit input buttons #1171342

    Hey HU_Dallas,

    Thank you for the inquiry.

    You can’t create pseudo elements in an input or form field. Try this css code instead.

    .form_element:nth-child(6)::before {
    	content: '';
    	opacity: 0;
    	position: absolute;
    	right: 180px;
    	font-family: 'entypo-fontello';
    	top: 15px;
    	z-index: 100;
    	color: white;
    	transition: all 0.1s linear;
    }
    
    .form_element:hover::before {
            opacity: 1;
    }

    Best regards,
    Ismael

    in reply to: Featured slider caption date post #1171340

    Hi,

    Thank you for the update.

    Would you like to move the date before the title? Adding the following snippet in the functions.php file should help.

    // custom script
    function ava_custom_script_mod(){
    ?>
    <script>
    (function($){
       $('.slide-entry').each(function() {
           var meta = $(this).find('.slide-meta'),
               img  = $(this).find('.slide-image');
               meta.insertAfter(img);
       });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod');

    Best regards,
    Ismael

    in reply to: Color Section Won't Display Background Image #1171339

    Hi,

    Thank you for the update.

    Looks like the background image of the start section is incorrect. It’s an svg file.

    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20500%20300%22%3E%3C/svg%3E);
    background-attachment: scroll;
    background-position: center center;

    Is that the correct URL? Please try to set the background image again.

    Best regards,
    Ismael

Viewing 30 posts - 19,861 through 19,890 (of 67,469 total)