Forum Replies Created

Viewing 30 posts - 55,411 through 55,440 (of 67,482 total)
  • Author
    Posts
  • in reply to: RangeError: Maximum call stack size exceeded #331450

    Hi!

    Thank you for the update.

    What codes did you add on shortcodes.js? If possible, please place the css modifications on pastebin.com. We would like to test it on our installation. Anyway, I checked the site and the accordion slider looks ok.

    Cheers!
    Ismael

    in reply to: Header logo #331448

    Hi!

    I’m sorry but you didn’t add your own logo yet. Please upload the logo on Enfold > Theme Options > Logo then we’ll check it. A screenshot of what you’re trying to do will help.

    Regards,
    Ismael

    in reply to: Colour Section Block Missing? #331447

    Hey juliaevemann!

    Thank you for using Enfold.

    It is under the Layout Elements section. Right before Grid Row.

    Regards,
    Ismael

    Hi InvivoGraphic!

    Thank you for using Enfold.

    Please refer to this link on how to add the order and orderby option on the post slider element:

    http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/

    Regards,
    Ismael

    in reply to: Custom Blog styling #331444

    Hey!

    Please use this:

    .rounded-container .iconfont, .small-preview .iconfont {
    display: none;
    }

    If you want to remove the background, use this:

    .main_color .small-preview {
    background: transparent;
    }

    Regards,
    Ismael

    in reply to: Menu size and logo #331442

    Hey!

    You can find the Quick CSS field on Enfold > General Styling panel. At the very bottom.

    Regards,
    Ismael

    in reply to: Bold text still coloured #331438

    Hi!

    Please use this:

    .main_color .avia_textblock strong {
    color: black;
    }

    Cheers!
    Ismael

    in reply to: Inserting color section pushes down sidebar #331436

    Hi!

    Thank you for the update.

    You can set the page to No Sidebar then add 3/4 and 1/4 column layouts inside the color section. Add the Widget Area element (sidebar) on the 1/4 column and the contents on 3/4 columns.

    Regards,
    Ismael

    in reply to: Single product page sidebar not showing up #331433

    Hey!

    Please try this on functions.php:

    #
    # wrap single product image in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2);
    add_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div', 20);
    function avia_add_image_div()
    {
    	echo "<div class='single-product-main-image alpha'>";
    }
     
    function avia_close_image_div()
    {
    	global $avia_config;
    	$avia_config['currently_viewing'] = "shop_single";
     
    	echo "</div>";
    }
     
     
    #
    # wrap single product summary in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25);
    add_action( 'woocommerce_after_single_product_summary',  'avia_close_summary_div', 3);
    function avia_add_summary_div()
    {
    	echo "<div class='single-product-summary'>";
    }
     
     
     
    function avia_close_summary_div()
    {
    	echo "</div>"; //close out the summary
    	get_sidebar();
    }

    Add this on Quick CSS or custom.css:

    .single-product .product {
    width: 68%;
    margin-right: 4%;
    clear: none;
    float: left;
    }

    Regards,
    Ismael

    in reply to: Fullwidth Sub Menu Enfold 3.0.1 #331429

    Hey Barry!

    Thank you for using Enfold.

    I checked the site and the fullwidth submenu looks fine. Do you mind providing a screenshot of the issue?

    Regards,
    Ismael

    in reply to: Layer Slider Enfold 3.0 Not Working #331428

    Hey!


    @Dogmut
    : Please refer to Josue’s fix here: https://kriesi.at/support/topic/layer-slider-enfold-3-0-not-working/#post-329400

    Best regards,
    Ismael

    Hi!


    @buellfire
    : Please post the link to the actual gallery page with the issue. We would like to check it.

    Cheers!
    Ismael

    in reply to: Related Post Text Style #331426

    Hi Martin!

    Thank you for using Enfold.

    Please use this:

    h5.related_title {
    text-align: center;
    font-size: 20px;
    }

    Regards,
    Ismael

    in reply to: Quick, small little problem #331363

    Hi venomhax!

    Thank you for using Enfold.

    Try this on Quick CSS or custom.css:

    div#jsection4 {
    z-index: 10000;
    position: relative;
    }

    Best regards,
    Ismael

    in reply to: Bug with 'Team Member' Content Element #331359

    Hey Rustybucket!

    Thank you for using Enfold.

    Please try to contact your host. Maybe they have any idea what’s causing the issue. If possible, we would like to check it. Please post login details here and set it as a private reply.

    Best regards,
    Ismael

    in reply to: Read More #331356

    Hey trackvets!

    Thank you for using Enfold.

    Yes, it only works for blog posts. You can’t use it on text blocks.

    Regards,
    Ismael

    in reply to: layout v.3 #331354

    Hey patriscia!

    Thank you for using Enfold.

    Please go to Enfold > General Layout > Layout > Logo and Main Menu. Select left or right sidebar.

    Best regards,
    Ismael

    in reply to: News Main Menu Sidebar #331353

    Hey jansthh!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css:

    .html_header_sidebar #top #header {
    width: 400px;
    }

    Regards,
    Ismael

    in reply to: Create Full Page Template #331346

    Hey!

    Please use this:

    #portfolio .container { 
    max-width: none; 
    width:100%; 
    margin: 0; 
    padding: 0;
    }

    Regards,
    Ismael

    in reply to: Baseline logo #331343

    Hi!

    Thank you for the info.

    I’m sorry but you can’t use the Appearance > Customize panel to add any options on the theme when you’re using Enfold. All available options are within the Enfold > Theme Options panel. If you want to show a sub text on the logo, use this on functions.php:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    
    function kriesi_logo_addition($sub) {
    	$sub .= "<strong class='logo-title'>Company Name</strong>";
    	$sub .= "<strong class='logo-title logo-subtitle'>Additional Text Here</strong>";
    	return $sub;
    }

    Adjust the subtext position with this:

    .logo, .logo a {
    overflow: visible;
    width: 100%;
    }
    
    span.subtext {
    position: absolute;
    top: 0;
    left: 200px;
    }

    Cheers!
    Ismael

    in reply to: Wrap an h1 tag around title #331342

    Hi kem1975us!

    Thank you for using Enfold.

    Please use this:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if ( $args['title'] == 'Blog - Latest News' )
    {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    $args['heading'] = 'h1';
    }
    
    return $args;
    }

    Best regards,
    Ismael

    in reply to: Issue with "image" on "Post entries" admin panel #331341

    Hi macatokio!

    Thank you for using Enfold.

    Do you mind if we take a look inside? Please post the login details here and set it as a private reply.

    Regards,
    Ismael

    in reply to: Slider height no scaling correctly #331338

    Hi!

    Thank you for using Enfold.

    Looks like you’re not using any fancy transition on the sliders. This slider can be duplicated with the Fullwidth Easy Slider. On Slideshow Image and Video Size, choose “No Scaling”. The problem is, layer slider is automatically adding top margins for slide backgrounds, cutting off the top part of the image.

    Cheers!
    Ismael

    in reply to: WooCommerce Product Pages Formatting Issue after updating #331337

    Hey!

    Glad it is working now. I hope other users find this mysterious “Save” button. We will all be saving our time. :)

    Regards,
    Ismael

    in reply to: Layer Slider Transitions & Animation #331335

    Hey Vicken!

    Thank you for using Enfold.

    Did you also change the transition of the other slide? After you check all transition options, make sure that you save changes.

    Regards,
    Ismael

    in reply to: installation of enfold with all-inkl.com failed #331334

    Hey marri!

    Thank you for using Enfold.

    Make sure that you unzip the actual theme folder. Please try to install the theme via FTP. Refer to this link for more info: http://kriesi.at/documentation/enfold/install-enfold-over-ftp/

    Regards,
    Ismael

    in reply to: http error when uploading media #331333

    Hey scottfairchild!

    Thank you for using Enfold.

    Maybe, you’ve reach the maximum space limit on your account? Please ask your host or check your cpanel. If possible, please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    in reply to: Product Details Lightbox #331332

    Hey Ignazio!

    Thank you for using Enfold.

    No, unfortunately, that is not possible yet. You can vote or request the feature on our Feature Requests page.

    Best regards,
    Ismael

    in reply to: Have Blog Sidebars been affected by the upgrade to V3? #331331

    Hey!

    Thank you for the update.

    Please edit Enfold > General Layout > Dimensions > Maximum Container width and Content | Sidebar Ratio. Save changes. See if that fix the sidebar area width issue. Regarding the widgets, still not sure why they’re not showing. Please give us a temporary login details. We would like to check it.

    Regards,
    Ismael

    in reply to: New Sticky Fullwidth Submenu #331330

    Hi uniquelylost!

    Thank you for using Enfold.

    I’m sorry but this might break the sticky but you can add this on functions.php:

    function ava_sticky_sub() { 
    		$output = do_shortcode("[av_submenu menu='32' position='center' color='main_color' sticky='aviaTBsticky' custom_class='']");;
    		echo $output;
    }
    
    add_action('ava_after_main_container', 'ava_sticky_sub', 10);

    Cheers!
    Ismael

Viewing 30 posts - 55,411 through 55,440 (of 67,482 total)