Forum Replies Created

Viewing 30 posts - 46,441 through 46,470 (of 67,597 total)
  • Author
    Posts
  • in reply to: Lightbox image size #519676

    Hi!

    Please go to Settings > Media panel then set the max width and height of the “Groß” (Large size) to 9999. Regenerate the thumbnails afterwards: https://wordpress.org/plugins/force-regenerate-thumbnails/

    Cheers!
    Ismael

    in reply to: portfolio_category and portfolio_category in URL #519674

    Hi!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    add_filter('post_type_link', 'post_type_link_mod', 10, 4);
    function post_type_link_mod($post_link, $post, $leavename, $sample)
    {
        if ( false !== strpos( $post_link, '%portfolio_entries%' ) ) {
            $portfolio_entries = get_the_terms( $post->ID, 'portfolio_entries' );
            $post_link = str_replace( '%portfolio_entries%', array_pop( $portfolio_entries )->slug, $post_link );
        }
        return $post_link;
    }
    
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    function avf_portfolio_cpt_args_mod($args) {
    	$permalink = get_option('avia_permalink_settings');
    	$args['rewrite']['slug'] = $permalink['portfolio_permalink_base'] . '/%portfolio_entries%';
    	return $args;
    }

    Flush or resave the permalink settings afterwards:

    Best regards,
    Ismael

    in reply to: Move position of search results text #519667

    Hi!

    I checked the search results page and looks like you managed to move the content with this:

    #top .template-search.content .entry-content-wrapper {
        padding-left: 120px !important;
        padding-bottom: 50px;
    }

    Regards,
    Ismael

    in reply to: Startseite kann nicht bearbeitet werden #519660

    Hi augenblende!

    Thank you for using Enfold.

    I tried to edit the home page and it won’t budge. I deleted the old homepage permanently from the trash, still nothing. What happens if you deactivate the WP Super Cache plugin?

    Regards,
    Ismael

    in reply to: Assign different icons to a bullet list #519659

    Hi!

    I’m sorry but I can’t load the page. Why wouldn’t you know the order of the list? The code above should work as if you’re counting from number 1 to the next.

    ul > li:nth-child(1) {  }
    ul > li:nth-child(2) {  }
    ul > li:nth-child(3) {  }
    ul > li:nth-child(4) {  }
    

    Please refer to this link: https://css-tricks.com/how-nth-child-works/

    Regards,
    Ismael

    in reply to: Responsive size images to the Enfold theme #519658

    Hey!

    Yes, that is probably the case but it hasn’t been implemented yet and none of the top premium themes have this plugin installed by default, at least not that I know of. Please refer to their documentation if you want to install it in the theme. This will take a major code rewrite in the template files because you have to implement the advanced-image-compression: https://github.com/ResponsiveImagesCG/wp-tevko-responsive-images/tree/dev#advanced-image-compression

    Also, the srcset attribute is not supported completely specially on mobile browsers: http://caniuse.com/:

    Best regards,
    Ismael

    in reply to: Getting a page to re-direct #519152

    Hey!

    Please go to the Appearance > Menus panel then remove the current “GBI” menu item. Replace it with a new custom link, add the “#” symbol in the url. Below the new GBI menu item, add the “About GBI” as a sub menu. http://codex.wordpress.org/Appearance_Menus_Screen

    Regards,
    Ismael

    in reply to: Image Overlay #519144

    Hi bettina246!

    Thank you for using Enfold.

    Use this in the Quick CSS field to change the overlay icon:

    .image-overlay.overlay-type-video .image-overlay-inside:before {
        content: url(IMAGE URL HERE);
    }

    Add the new image url.

    Regards,
    Ismael

    in reply to: Disable automation of setting full-width for every table #519129

    Hey!

    The table’s width is set to 100% by default. Try to add this in the Quick CSS field:

    table {
        width: auto;
    }

    Best regards,
    Ismael

    in reply to: boxed layout #519124

    Hey!

    You can start by setting the social profiles and then enable it in the Header > Extra Elements panel. We can then adjust the position in the Quick CSS field. The demo is boxed layout so set the General Layout > Layout to Boxed. You can then manipulate the color in the General Styling panel. Use the sliders or the color section element in the advance layout builder. Let us know if you need anything else.

    Regards,
    Ismael

    in reply to: Remove Contact Form Heading #519119

    Hey!

    Edit the element then leave the “Form Title” field empty.

    Cheers!
    Ismael

    in reply to: Different size product images #519117

    Hey!

    The theme is actually using the default woocommerce product layout and as far as I know, the only workaround if you want a consistent grid is to upload images with the same size and proportion. You can also set the max height of the image container but it will distort some of the images. If you want to modify the product layout, please contact the woocommerce team or hire someone in codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: Big mobile pics #519114

    Hi!

    Please try this in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    #av_section_1 div .av_three_fifth {
        margin-left: 6%;
        width: 57.599999999999994% !important;
    }
    
    #av_section_1 div .av_one_fifth {
        margin-left: 6%;
        width: 15.2% !important;
    }
    }

    Use the color section’s Section ID field to specify a unique id for the container. Use “custom-section” for example. You can now replace the “#av_section_1” selector with “#custom-section”.

    Regards,
    Ismael

    in reply to: Search Widget only in mobile view #519113

    Hey!

    Great! Is it OK now? Or do you need anything else?

    Regards,
    Ismael

    in reply to: Page up and next show square instead of arrow #519111

    Hey!

    You can create a post for each author then set it to “Link” format. Add the url to the author page. If you want to be able to select these posts in the blog posts element, apply a unique category.

    Regards,
    Ismael

    in reply to: How to remove HTML table border and Background colour #519110

    Hey!

    I checked the site but I don’t see any gray background. Could you please provide a screenshot? Use imgur or dropbox. Did you try the grid row element? You can add column layouts inside the cells.

    Regards,
    Ismael

    in reply to: Content Section blocks Mobile Menu #519107

    Hi!

    The very first css declaration in the code above should fix it:

    #mobile-advanced {
    z-index: 99999 !important;
    }

    Please try to disable the W3 Total Cache plugin to disable the minification. Test the page before enabling it back.

    Regards,
    Ismael

    in reply to: removing responsive page #519103

    Hi!

    Add this inside the media query:

    html.responsive, .responsive body {
        overflow-x: visible;
    }
    
    #wrap_all {
        overflow-x: scroll;
    }

    Regards,
    Ismael

    in reply to: Background sections issue #519102

    Hi Remco!

    Thank you for using Enfold.

    Are you trying to fix the countdown boxes? You can adjust the style in the Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive .av-countdown-cell-inner {
        padding: 5px 3px;
        font-size: 12px;
    }
    
    .responsive .av-countdown-time {
        font-size: 15px !important;
    }
    }

    Regards,
    Ismael

    Hi!

    The code will disable the compression and concatenation of scripts and css stylesheets, almost the same as minification. It somehow fixed the issue when it loads the developer version of the scripts and stylesheets instead of the minified version.

    Regards,
    Ismael

    in reply to: Excerpt and Read More Link #519093

    Hi xandria!

    Thank you for using Enfold.

    Did you try the more tag or the excerpt box as suggested on the previous thread? The read more link will appear once you set the excerpt. Or you can try this plugin: https://wordpress.org/plugins/advanced-excerpt/

    Cheers!
    Ismael

    in reply to: bg_container IE 8 Css Error #519091

    Hi!

    I don’t know for sure if this is going to work but try to regenerate the thumbnails. Use this plugin: https://wordpress.org/plugins/force-regenerate-thumbnails/

    Regards,
    Ismael

    in reply to: Cannot chance sides #519089

    Hey!

    Great! Not sure if we are of any help but glad it’s finally working. :)

    Best regards,
    Ismael

    in reply to: Problem with related_posts in secondary language with WPML #519016

    Hi!

    I’m having a terrible net connection, it’s probably working the other day but I can’t access it. Sorry about that. I actually created a few test posts and yes, you’re correct. It doesn’t recognize the posts included on the next tag. I will ask the rest of the support team to check this.

    Regards,
    Ismael

    in reply to: Website speed, many products and translation #519014

    Hey Middletown!

    Thank you for considering Enfold.

    The performance of the site will actually depend on the current hosting plan, the theme is a factor but it all comes down to the server capacity and bandwidth, not to mention added plugins like WPML, modules and media files etc., so there’s a lot of things to consider. It’s probably best to consult your hosting provider’s administrators. If you’re on a shared hosting, it is important that you upgrade to a dedicated server plan which offers optimal bandwidth which can handle heavy traffic if you’re expecting such.

    There are available plugins that enables you to add an email form inside the product page. You can try the following:

    https://wordpress.org/plugins/woocommerce-email-inquiry-cart-options/
    https://wordpress.org/plugins/product-enquiry-for-woocommerce/

    Please contact the plugin woocommerce team for more info.

    Cheers!
    Ismael

    in reply to: Custom Social Icons – Showing wrong Fontello icons #519013

    Hi!

    Please remove the modification in the register-admin-options.php file then add this code in the functions.php file:

    function avia_add_custom_social_icon($icons) {
    	$icons['Spotfiy'] = 'spotify';
    	$icons['Reverbnation'] = 'reverbnation';
    	$icons['Itunes'] = 'itunes';
    	$icons['CDBaby'] = 'cdbaby';
    	$icons['Indie on the Go'] = 'indieonthego';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Place it below the previous code or below line 17.

    Cheers!
    Ismael

    in reply to: Featured images on blog are blurry #518999

    Hey!

    If you want to have a read more link in the post overview page, you have to use the more tag or the excerpt box. https://en.support.wordpress.com/more-tag/

    Regards,
    Ismael

    in reply to: WPML Language switcher dropdown #518998

    Hey!

    You have to add this code in the functions.php file to disable the theme’s flag configuration:

    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 );
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10);
    }

    Go to the WPML panel then enable the language switcher. Configure the options.

    Regards,
    Ismael

    in reply to: Changing order when listing the portfolio items #518497

    Hi!

    It works OK on our installation. Can you please provide the url to the portfolio item where this is not working? Note that if the post belongs to multiple categories, it will also display posts which belongs to other categories.

    Best regards,
    Ismael

    in reply to: Problem with related_posts in secondary language with WPML #518476

    Hey!

    Thank you for the update.

    1.) I don’t remember the actual tag ids but I know that they are the ids of the related tags.
    2.) I actually changed the slugs of the page and post but it’s still not working.
    3.) Number 2.
    4.) There is a page called “Customization” with the same slug as the post and tag. I changed both slugs.
    5.) Yes, no problem there.
    6.) Yes, it works fine on the default language.

    I tried to login again to the site but the login credentials above is not working.

    Cheers!
    Ismael

Viewing 30 posts - 46,441 through 46,470 (of 67,597 total)