Forum Replies Created

Viewing 30 posts - 37,441 through 37,470 (of 66,745 total)
  • Author
    Posts
  • in reply to: Portfolio grid default category #738193

    Hi wgertler!

    Thank you for using Enfold.

    If you want the images to load faster, you need to make sure that they are optimized accordingly. This short article will help.

    // http://kriesi.at/archives/4-key-wordpress-image-optimization-tips

    And installing a cache and minify plugin will help as well.

    Cheers!
    Ismael

    in reply to: Which function is responsible to display the_content(). #738190

    Hey!

    The same variables are being used in the single post page. If you remove it, you’ll find an empty single post page.

    Regards,
    Ismael

    Hi waveseven!

    Thank you for using Enfold.

    Are you referring to the theme’s default title container? Please add this filter in the functions.php file.

    add_filter('avf_title_args','avf_title_args_mod', 10, 4);
    function avf_title_args_mod($args)
    {
    	global $wp_query;
    	$id = $wp_query->get_queried_object_id();
    	$parent = get_category_parents( $id );
    	$parent = explode("/", $parent);
    
    	if(is_tax('product_cat') && $parent[0] != $args['title'])
    	{
    		$args['title'] = $parent[0] . ': ' . $args['title'];
    	}
    
    	return $args;
    }

    Best regards,
    Ismael

    in reply to: Keep Icon "Pulse" on hover with no link #738183

    Hi Slade!

    Thank you for using Enfold.

    Please add this css code to disable the link.

    .av_font_icon.feature-icon {
        pointer-events: none;
    }

    You can use that selector or turn on the custom css class field so that you can apply a unique class attribute to the icons.

    // http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Regards,
    Ismael

    in reply to: Table display #738177

    Hey!

    I checked the table but it’s not set to “tabular”. Please create a test page or post the login details here so that we can see the issue.

    overlays the text from one column over another.

    We can probably fix it with a simple css modification.

    #top .avia-table td {
        text-align: center;
        word-break: break-word;
        word-wrap: normal;
    }

    Regards,
    Ismael

    in reply to: Mega Menu Option No Longer Available #738175

    Hey bjornwallman!

    Thank you for using Enfold.

    The option is working on a test menu that we created. Please remove the current menu then re-create it from scratch. It’s probably corrupted or a plugin is causing the issue.

    // https://cityvipconcierge.com/wp-admin/nav-menus.php?menu=340

    Regards,
    Ismael

    in reply to: Blog post – remove slash after last category #738173

    Hey cagraphicdesign!

    Thank you for using Enfold.

    Please add this in the Quick CSS field.

    span.text-sep.text-sep-cat {
        display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Icon Größe und Farbe #738172

    Hey margitmuehlberger!

    Thank you for using Enfold.

    Could you please provide a screenshot of the issue? And since the issue is only happening when you’re logged in, we will be needing the login credentials. Please post it in the private field.

    Cheers!
    Ismael

    in reply to: Read more button on elegant blog layout #738159

    Hey tjswarbs78!

    Thank you for using Enfold.

    Could you please provide a link to the page with the issue? The read more link or button looks fine on our installation.

    Best regards,
    Ismael

    in reply to: No Follow Tag on AJAX site search #738158

    Hey gvadam!

    Thank you for using Enfold.

    Please ignore my previous post. That option will hide the whole site on search engines. You can add this hook in the functions.php file:

    add_action( 'wp_head', 'wp_head_mod_nofollow' );
    function wp_head_mod_nofollow() {
    	if(is_search()) {
    		echo '<meta name="robots" content="noindex,nofollow">';
    	}
    }
    

    Or install seo plugins such as Yoast.

    Regards,
    Ismael

    Hey SuperflyDK!

    Thank you for using Enfold.

    Please edit the slider images then set the Image Position to “Center center”. Another workaround is to create multiple versions of the slider image for different devices then apply it by using css media queries. Example:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    /* slide 1 */
    .avia-fullscreen-slider .avia-slideshow >ul > li:nth-child(1) {
        background-image: url(IMAGE FOR TABLET) !important;
    }
    
    /* slide 2 */
    .avia-fullscreen-slider .avia-slideshow >ul > li:nth-child(2) {
        background-image: url(IMAGE FOR TABLET) !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
    /* slide 1 */
    .avia-fullscreen-slider .avia-slideshow >ul > li:nth-child(1) {
        background-image: url(IMAGE FOR PHONE) !important;
    }
    
    /* slide 2 */
    .avia-fullscreen-slider .avia-slideshow >ul > li:nth-child(2) {
        background-image: url(IMAGE FOR PHONE) !important;
    }
    }

    Cheers!
    Ismael

    in reply to: Fractional quantities in WooCommerce #738153

    Hi!

    Could you please provide a link to the actual product with the issue? I visited the shop page but I can’t access the products.

    // http://shop.servizinoncomuni.it/negozio/

    And please contact the plugin author for additional help regarding the issue.

    Regards,
    Ismael

    in reply to: place "Read More" Element behind the excerpt text #738152

    Hi,

    Please add this in the Quick CSS field.

    .avia-content-slider .slide-entry-excerpt * {
        display: inline;
    }

    Best regards,
    Ismael

    in reply to: Google conversion contact form via # in url #738150

    Hey Special K,

    Thank you for using Enfold.

    Please edit the contact form element then set the “What should happen once the form gets sent?” settings to “redirect”. A new option called “Redirect” will show up. Add the url in the field. Please note that this will refresh the page so I’m not sure if this is what you need.

    Best regards,
    Ismael

    in reply to: edit full screen image slide #738149

    Hey!

    Remove the display property.

    .home #fullscreen_slider_0 h2.avia-caption-title {
        background: #686c68;
        display: inline;
    }

    .. replace it with:

    .home #fullscreen_slider_0 h2.avia-caption-title {
        background: #686c68;
    }
    

    Regards,
    Ismael

    in reply to: bring text down to bottom of color section #738148

    Hey arteffekt!

    Thank you for using Enfold.

    View post on imgur.com

    Where can we find that section? I can’t find it anywhere in the site. Please provide a link or url to the actual page.

    And i use 2 color section here: http://imgur.com/a/aEqwG How can i set a ratio of 65% to 35% instead of 75% and 25% (high of color section)?

    This is possible but you have to modify one of the parent theme files. Edit the js > avia.js file, look for this code around line 2272:

    				wh75		= Math.round( wh100 * 0.75 ),
    				wh50		= Math.round( wh100 * 0.5  ),
    				wh25		= Math.round( wh100 * 0.25 ),

    .. replace it with:

    				wh75		= Math.round( wh100 * 0.65 ),
    				wh50		= Math.round( wh100 * 0.5  ),
    				wh25		= Math.round( wh100 * 0.35 ),
    

    Regards,
    Ismael

    in reply to: Contactform Captcha text change #738145

    Hey!

    Did you set the Settings > General > Site Language to Deutch or to your own language? The language files are not going to work if it is set to the default language (English).

    Cheers!
    Ismael

    in reply to: Masonery blog pagination issue #738143

    Hi!

    What is the version of the theme when you modified the file? Please get a fresh copy of the masonry_entries.php file from the latest update then redo the modification. Or check if there are discrepancies, aside from the previous modification, between the original and the modified version.

    Best regards,
    Ismael

    Hey DigitalEssence!

    Thank you for using Enfold.

    Please replace the css code with the following.

    .av-product-class- {
        width: 100%;
        outline: 2px orange solid;
    }
    
    .av-product-class- a {
        max-width: 1200px;
        margin: 0 auto;
    }

    You can use css media queries if it requires adjustments on smaller screens.

    Regards,
    Ismael

    in reply to: IE 11 does not show all text content on P element #738138

    Hey!

    I checked the site on an actual IE11 browser and this is what I got.

    View post on imgur.com

    Are you getting this issue on a browser emulation?

    Cheers!
    Ismael

    in reply to: Disable all Tuesdays, except some in datepicker #738133

    Hey lijndiensten!

    Thank you for using Enfold.

    Please replace the snippet with the following code.

    beforeShowDay: function(date) {
    			        var day = date.getDay();
    					if (date.getDate() == 14 && date.getMonth() == 1) {
    					   return [true, ""];
    				    }
    		        	return [(day != 2)];
    				},

    Regards,
    Ismael

    in reply to: Date and Author Missing from single post with Grid View #738125

    Hey!

    If you want to check the database, look for the _posts table, search for the ID of the post then check if the post_date and post_modified columns are set. Is this the only post with the issue?

    Best regards,
    Ismael

    in reply to: Enfold Pinterest Share Image Selection #738123

    Hi jstonestreet!

    Thank you for using Enfold.

    This is possible but it will take a major modification in the includes > helper-social-media.php > avia_social_share_links class. The sharing section has a preset pattern and it can be modified, though limited, with the following filter.

    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
    	$args['pinterest']['pattern'] = "http://pinterest.com/pin/create/button/?url=[permalink]&description=[title]&media=[thumbnail]";
    	return $args;
    }

    By default, the “media” parameter will take the thumbnail or the featured image as its value. If you really need this feature, please hire a freelance developer or contact our partner, Codeable.

    // http://kriesi.at/contact/customization

    Regards,
    Ismael

    in reply to: No webshop after wholesale logged in #738122

    Hey Ronaldgoudriaan!

    Thank you for using Enfold.

    What does the template do? The actual plugins > woocommerce > templates > archive-product.php file looks very different from what you’ve posted here. Please get a fresh copy of the template then do the modifications again. And if possible, please contact the plugin author for additional help.

    And for further testing, please look for this line:

    if ( !empty($wwp_wholesale_role) ) {
    

    Above it, add this code:

    var_dump($wwp_wholesale_role);
    

    Check the page and let us know if it returns any value.

    Best regards,
    Ismael

    in reply to: Behaviour on mobile devices and menu side-bar. #738119

    Hey!

    Please set the “Sticky Sidebar menu” to the first option because setting it to “always sticky” will force the sidebar to not scroll with the content even if the sidebar is bigger or taller than the screen. Aside from that option, you can also decrease the height of the menu items or decrease the size of the logo to create more space for the bottom part of the sidebar. Try this in the Quick CSS field.

    #top #header .av-main-nav > li > a {
        font-size: 18px;
        font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        padding: 13px 3px;
        line-height: 1.5em;
    }
    
    .html_header_sidebar .logo {
        padding: 20px 40px;
        margin-top: -10px;
    }

    On bigger screens, I’m pretty sure that you won’t encounter this issue.

    Best regards,
    Ismael

    in reply to: Removing Category LInks #738115

    Hi!

    Thank you for the info.

    You can change the default category base prefix in the Settings > Permalink panel. Look for the Category base field. Unfortunately, the options for this feature is very limited and most of the plugins that can modify the url structure are deprecated.

    Best regards,
    Ismael

    in reply to: Gallery thumbnail images #738112

    Hey!

    We are very sorry for the confusion. Please edit the gallery element then select a thumbnail size in the “Gallery Preview Image Size” settings. You can also install the suggested plugin above so that the “crop” parameter for the selected thumbnail size can be enabled. Enabling the “crop” parameter will ensure that every images are cropped to the exact same size.

    Cheers!
    Ismael

    in reply to: Not uploading logo and slideshow images #738109

    Hi,

    I think Rikard is asking you to upload a screenshot of the issue on Google Drive so that we can see it here. I’m sorry but we can’t help much if we can’t access the site.

    Best regards,
    Ismael

    in reply to: Interaction between Enfold, WooCommerce, and Events Tickets #738107

    Hi!

    Please revert the modifications back to default then look for this line instead.

    newNum = jQuery(jQuery('<div />').append(number.clone(true)).html().replace('number','text')).insertAfter(number);
    

    .. replace it with:

    newNum = jQuery(jQuery('<div />').append(number.clone(true)).html()).insertAfter(number);
    

    And please make sure that you’re using the latest version of the plugin.

    It looks like you’re using Event Tickets Plus, but the license key you supplied does not appear to be valid or is missing. Please review and fix so that you can always have access to our latest versions!
    You can find your license keys by logging in to your account on theeventscalendar.com and you can enter them over on the settings page.

    Regards,
    Ismael

    in reply to: How to change Related Item Count on Blog Layout #738106

    Hi,

    Could you please provide a link to the actual post with the related section? There are only two posts in the dashboard and none of them belong to any tags.

    // http://thecommonthreadmerc.com/2016/10/01/project-tracker/

    Best regards,
    Ismael

Viewing 30 posts - 37,441 through 37,470 (of 66,745 total)