Forum Replies Created

Viewing 30 posts - 7,861 through 7,890 (of 82,625 total)
  • Author
    Posts
  • in reply to: Since last Update broken titles #1235790

    Hi,

    That is because you closed “my_child_set_revocation_admin_mail” function after “fix_single_post_title”, not before. I fixed it and attached pastebin file in private content field. Please update your functions.php file

    Best regards,
    Yigit

    in reply to: Top Bar on Mobile #1235785

    Hi,

    It works fine on my end. Attached a screenshot in private content field.

    Please flush browser cache on your mobile device and refresh your page a few times :)

    Best regards,
    Yigit

    in reply to: Open Lightbox Image From Icon #1235668

    Hi Mark,

    Could you please post temporary admin logins and a link to your page so we can look into it?

    Best regards,
    Yigit

    in reply to: wix enfold #1235511

    Hi Karen,

    Please request a refund on Envato – https://help.market.envato.com/hc/en-us/articles/202821460-Can-I-Get-A-Refund- so our founder Kriesi can review the request :)

    Best regards,
    Yigit

    in reply to: wix enfold #1235509

    Hi,

    Thanks for contacting us!

    Unfortunately, no. Enfold only has a WordPress version and it would not work on a Wix site.

    Regards,
    Yigit

    in reply to: Pre sale question #1235508

    Hey,

    Thanks for contacting us!

    It seems like they have used this plugin – https://wordpress.org/plugins/caldera-forms/ to create the form and used our Enfold theme – https://kriesi.at/themes/enfold-overview/ to create their website :)

    I hope that helps! Let us know if you have any other questions :)

    Regards,
    Yigit

    in reply to: Open Lightbox Image From Icon #1235507

    Hey Mark,

    Please edit your Icon element and link it to your image in Advanced > Link Settings and it would open in lightbox :)

    Best regards,
    Yigit

    in reply to: Top Bar on Mobile #1235506

    Hey,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    @media only screen and (max-width: 767px) {
    #top #header_meta {
        background-color: #2d5c88 !important;
    }}
    
    

    Best regards,
    Yigit

    in reply to: Translate cookie settings #1235504

    Hi,

    You can translate it by using this plugin – https://wordpress.org/plugins/loco-translate/. It seems like that string was not translated into your language.
    If you would like us to translate it for you, please create temporary admin logins, share them privately and let us know the correct translations of highlighted text in your screenshot :)

    Best regards,
    Yigit

    in reply to: Since last Update broken titles #1235503

    Hi,

    I see. However the code works fine on my end. I tested with the latest version of WooCommerce.
    Could we login to dashboard and check? Cannot really tell why it is not working on your installation.

    Best regards,
    Yigit

    in reply to: Delete Basket Woocommerce in menu #1235502

    Hi,

    Could you please post a screenshot and show the changes you would like to make? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here :)

    Code I posted above should have removed mini cart from header. I tested before posting but I might have misunderstood you request :)

    Best regards,
    Yigit

    in reply to: Questions about Enfold #1235480

    Hi,

    Not at all! I updated the email address :)

    Best regards,
    Yigit

    in reply to: Hamburger Menu on Desktop #1235333

    Hi,

    Please go to Enfold theme options > General Styling and add following code to bottom of Quick CSS field

    .home #avia-menu > li#menu-item-4371 {
        display: block !important;
        float: right;
    }

    I did not add the code as I could not come up with a solution to the issue I shared in screenshot below. When you open burger menu, Donate menu item would show up on it.

    Best regards,
    Yigit

    in reply to: Icon List Custom Pattern #1235331

    Hi,

    I added the code @guenni007 shared earlier to bottom of Enfold theme options > General Styling > Quick CSS field and adjusted it a bit to display your background image.

    Please review your website :)

    Best regards,
    Yigit

    in reply to: Blog – Custom Style #1235329

    Hi Rob,

    You are welcome!

    Let us know if you have any other questions or issues and enjoy the rest of your day! :)

    Best regards,
    Yigit

    in reply to: Icon List Custom Pattern #1235246

    Hi,

    Sorry for the late reply! I hope your sister gets well soon!

    Would you like to use the same pattern on all icons under “HOW WE WORK” section? I have edited your Icon List element and gave it “tagood-icons” custom CSS class but since it is on your live site, I did not continue. We will be waiting for your confirmation.


    @guenni007
    thank you so much for your help! We are grateful and if there is anyone you would not like us to vote, please let us know :)

    Best regards,
    Yigit

    in reply to: Custom Fonts not loading – Please help ASAP! #1235243

    Hi,

    Great! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

    in reply to: Hamburger Menu on Desktop #1235242

    Hi,

    I went to Appearance > Menus and added a “Donate” button as Custom Link to your main menu then added following code to Quick CSS in Enfold theme options > General Styling

    .home #avia-menu > li#menu-item-4126 {
        display: block !important;
        float: right;
    }

    You can do the same on the live site, you would only need to change menu ID (4126 in example above). You can go to Enfold theme options > Advanced Styling and edit “Menu Item Button” to change the styling of the menu item as needed :)

    Best regards,
    Yigit

    in reply to: Custom Fonts not loading – Please help ASAP! #1235236

    Hi,

    I am not sure if I understood the issue clearly. Could you please post screenshots and show the changes you would like to make? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.

    Please note that you can go to Enfold theme options > Advanced Styling and choose different font families for selected elements, such as H1 tagged elements. So if you would like to display Museo font family for body text and Museo italic for titles, you could simply choose to display Museo italic for heading elements :)

    Regards,
    Yigit

    in reply to: Filter product by category #1235230

    Hey,

    Have you tried using this plugin – https://wordpress.org/plugins/woocommerce-products-filter/? :)

    Best regards,
    Yigit

    in reply to: Delete Basket Woocommerce in menu #1235204

    Hey,

    Please add following code to bottom of Functions.php file of your child theme in Appearance > Editor

    add_action('init', 'ec_move_cart_dropdown', 5);
    function ec_move_cart_dropdown() {
    	remove_action( 'init', 'avia_woocommerce_cart_placement', 10);
    }

    Best regards,
    Yigit

    • This reply was modified 5 years, 7 months ago by Yigit. Reason: fixed function name
    in reply to: Questions about Enfold #1235202

    Hi,

    Private :)

    Best regards,
    Yigit

    in reply to: Blog – Custom Style #1235200

    Hey Rob,

    I added following code to bottom of Quick CSS field in Enfold theme options > General Styling tab

    
    .avia-content-slider .slide-entry-wrap {
        background: white;
        padding: 10px 10px 0 10px;
    }
    .html_elegant-blog .avia-content-slider .slide-entry-title { 
        padding-top: 0;
    }
    
    .archive .slide-entry {
        width: 100%;
        margin-left: 0;
        background-color: white;
        margin-bottom: 40px;
        padding: 10px 10px 0 10px;
    }

    Then I went to Enfold theme options > Sidebar Settings and enabled right sidebar on “Sidebar on Archive Pages”. Then changed archive layout by referring to this post – https://kriesi.at/documentation/enfold/blog-post/#toggle-id-8

    Please review your website :)

    Best regards,
    Yigit

    Hey fcp,

    Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Yigit

    in reply to: Since last Update broken titles #1235140

    Hi,

    I could not find any products on your page. The link takes me to event page where title is hidden however using following code still works. I tested again on my installation

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

    If that does not help, please point out the page where you are having the issue and share temporary admin logins in private content field so we can look into it.

    Best regards,
    Yigit

    in reply to: Custom links on images not working in gallery #1235120

    Hi Barry,

    Thanks for contacting us and sorry for the late reply.

    1- Custom link field was added for Masonry Gallery element however I will contact our devs and forward your request to use it on default gallery as well.

    2- Please add following code to Quick CSS in Enfold theme options > General Styling tab

    #top .avia-gallery .avia-gallery-thumb a:hover {
        opacity: 1;
    }

    Best regards,
    Yigit

    in reply to: Portfolio arrows are backwards #1235113

    Hey,

    Please add following code to bottom of Functions.php file of your child theme

    add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); 
    function enfold_customization_postnav($entries, $settings)
    {
    	$entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	$entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    
        return $entries;
    }

    Best regards,
    Yigit

    in reply to: I couldnt use Endolf Contact form #1235069

    Merhabalar,

    Onuda Enfold theme options > Shop Options sekmesinden halledebilirsiniz :)

    Rica ederim guzel gunler dilerim :)

    Best regards,
    Yigit

    in reply to: I couldnt use Endolf Contact form #1234914

    Merhabalar Orhan,

    Tesekkurler, umarim sende iyisindir!

    Enfold theme options > Sidebar Settings > Sidebar on Archive Pages alanindan “no sidebar” secerek shop sayfanizdan sidebari kaldirabilirsiniz. Sadece widget’i kaldirmak istiyorsaniz Appearance > Widgets > Shop Overview Page’e gidip varsayilan widgetlari goruntulememek icin bos HTML widgeti yerlestirebilirsiniz :)

    Iyi bayramlar!

    Best regards,
    Yigit

    in reply to: White screen of death! #1234369

    Hi,

    You are welcome, glad it works again :)

    For your information, you can take a look at Enfold documentation here – https://kriesi.at/documentation/enfold/

    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 30 posts - 7,861 through 7,890 (of 82,625 total)