Forum Replies Created

Viewing 30 posts - 181 through 210 (of 35,196 total)
  • Author
    Posts
  • in reply to: Not able to update the Enfold theme #1494547

    Hi,
    The code that you have posted above is your Purchase Code, not your Envato Personal Token, they are two different things.
    So you have entered the wrong info in the theme field that says: Enter a valid Envato private token.
    Please review this page in our documentation and open each toggle to read all of the info. You need to create the Token in your Envato account and Set the required Token Permissions, as per the documentation.

    Best regards,
    Mike

    Hi,
    It looks like your “Über mich” page is a Draft, you need to Publish it and view the live page, when you view the Preview page WordPress doesn’t load all of the theme files. Give this try.

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494543

    Hi,
    I had to do some testing on my site because the Theme File Editor is disabled on your site, I also note that the Plugin option is also disabled on your site. Nonetheless the code snippet will work without error if you add it to the child theme functions.php, you are currently adding it you your WPcode plugin that loads it after the theme, thus the error.
    fQ2GgFR.png

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494506

    Hi,
    I’m seeing this error: Sorry, you only have read-only access to this page. Ask your administrator for assistance editing.
    fsLRLMv.png
    I have not seen this before?

    Best regards,
    Mike

    in reply to: easy slider offset? #1494504

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: neue Support Lizenz #1494503

    Hi,
    Glad that Rikard could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Unable to edit a page #1494502

    Hi,
    Glad that you found a solution, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: “SOLD” image or text over some gallery images #1494501

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494460

    Hi,
    Thanks for your patience, I had a power outage here due to a winter storm, yes I was able to login, but it is late so I will start investigating tomorrow.

    Best regards,
    Mike

    in reply to: adjust hamburger menu flyout width? #1494325

    Hi,
    Glad that Guenni007 could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494297

    Hi,
    2:18pm EST USA:
    fPFzOxf.png

    Best regards,
    Mike

    in reply to: adjust hamburger menu flyout width? #1494293

    Hey Tilman,
    In the theme settings you can change the hamburger flyout fullwidth, but it is not based on the width/length of the menu entries. So you will need to adjust to suit if you have very long menu entries. You could also use the full screen mobile menu option if you wish.

    Best regards,
    Mike

    in reply to: top bar icon padding #1494292

    Hi,
    Try adding & clearing your browser cache, currently I see it like this:
    fP3CJSa.png
    with the css it is like this:
    fP3obol.png

    Best regards,
    Mike

    in reply to: top bar icon padding #1494289

    Hey Tilman,
    Try this css:

    .phone-info .av-icon-char {
    	top: -3px;
      position: relative;
    }

    Best regards,
    Mike

    Hey Johannes,
    The login is not working so we can’t see your “About Me” (Über mich) page. Once you correct the login can you also include a mockup image so we can have a better idea of what you want to do?

    Best regards,
    Mike

    in reply to: WooCommerce and filter plugin #1494282

    Hi,
    Glad that you were able to solve this, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: error: about:blank#blocked #1494281

    Hi,
    Glad that you were able to solve it, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: "Regular" or "Extended" license #1494279

    Hey Kai,
    You will only need the regular license. I recommend having the client purchase the license with their own login so that if someday they are not your client they will still be able to access the life time updates. Envato will not transfer licenses.

    Best regards,
    Mike

    in reply to: Floating header #1494276

    Hey Antonio,
    Thanks for your patience, try this css:

    .header_color .header_bg {
    	background-color: transparent;
    }
    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 0;
    }
    .av-logo-container .inner-container {
    	  border: 1px solid #e6e6e6;
        border-radius: 100px;
        box-sizing: border-box;
        background-color: #fff;
        margin-top: 20px;
    }
    .logo.avia-standard-logo {
    	padding-left: 20px;
    }
    .template-page.content {
    	padding-top: 150px;
    }

    This is how it should look:
    f6WsvrQ.png

    Best regards,
    Mike

    in reply to: grid rows – increase gap between grid cells #1494271

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: “SOLD” image or text over some gallery images #1494267

    Hi,
    I believe Ismael’s solution is for the masonry items (posts) were a custom field can be added, but you want to use masonry gallery images where the custom field is not an option.
    Instead try this function in your child theme functions.php:

    /**
     * Add SOLD overlay to specific masonry gallery items based on the data-av-masonry-item attribute
     */
    function add_sold_overlay_to_masonry_gallery() {
        // Define which masonry items should show as SOLD
        $sold_items = array(973, 866, 865);
        
        // Convert to JavaScript array
        $sold_items_js = json_encode($sold_items);
        ?>
        <script>
        jQuery(document).ready(function($) {
            // Items to mark as sold
            var soldItems = <?php echo $sold_items_js; ?>;
            
            // Add sold-item class to each specified masonry item
            soldItems.forEach(function(itemId) {
                $('.av-masonry-gallery .av-masonry-entry[data-av-masonry-item="' + itemId + '"]').addClass('sold-item');
            });
        });
        </script>
        
        <style>
        /* SOLD overlay styles */
        .av-masonry-entry.sold-item {
            position: relative;
        }
    
        .av-masonry-entry.sold-item::before {
            content: "SOLD";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 0, 0, 0.85);
            color: white;
            font-size: 24px;
            font-weight: bold;
            padding: 10px 30px;
            z-index: 10;
            letter-spacing: 2px;
            border: 3px solid white;
        }
    
        .av-masonry-entry.sold-item::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0);
            z-index: 9;
        }
        </style>
        <?php
    }
    add_action('wp_footer', 'add_sold_overlay_to_masonry_gallery');

    At the top of the function define which masonry items should show as SOLD in this line:

    $sold_items = array(973, 866, 865);

    these are the media library attachment IDs
    f6RZUyN.png
    this is the result:
    f6RmCAl.png

    Best regards,
    Mike

    in reply to: buy theme #1494266

    Hey Alex,
    The theme can only be purchased here: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990
    When I check Envato offers credit cards:
    f6uZUa2.png

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494263

    Hi,
    I checked again, but I’m still blocked by Cloudflare.

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494230

    Hi,
    Unfortunately I was blocked again. My IPv4 has not changed but my IPv6 changes with each reboot, try whitelisting my IPv4.

    Best regards,
    Mike

    Hi,
    Glad that we could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494197

    Hi,
    Thanks, but I don’t see the “Temporary Login Without Password” link today, perhaps you removed it? I also don’t see a admin login. Please add one of these so I can login and check.

    Best regards,
    Mike

    in reply to: Create a second overlay menu #1494142

    Hi,
    Thanks

    Best regards,
    Mike

    in reply to: WooCommerce Features not working #1494141

    Hi,
    I’m in the USA but I was also blocked by Cloudflare. I added my IP below, but unfortunately I believe that it changes sometimes. Using the “Temporary Login Without Password” plugin would be best, I’m not sure why Cloudflare would block using it. But white list my IP and lets hope that it works.
    As far as the sidebar being below the product, this is where Woocommerce places it.

    Best regards,
    Mike

    in reply to: No footer #1494051

    Hey h-i-m,
    Can you include a admin login for us to examine?

    Best regards,
    Mike

    Hi,
    Under WordPress > General Settings > Site Icon you had no image chosen, so I picked one for you which was your 512px by 512px png favicon. WordPress now shows that it is picked:
    fULwcUQ.png
    Then I changed your Enfold Theme Options > Favicon to your real favicon.ico from your root directory instead of the png image:
    fULQtWb.png
    I believe this should  help, now you need to try going to your Google Search Console and request that your site is crawled again, which may take a few days, once Google Search Console says it has been crawled, check again.

    Best regards,
    Mike

Viewing 30 posts - 181 through 210 (of 35,196 total)