Viewing 30 results - 1,681 through 1,710 (of 106,480 total)
  • Author
    Search Results
  • ballindigital
    Participant

    How do I remove the thick black border and dark overlay from the gallery media element?

    View post on imgur.com

    I’ve already used this kind of code snippets several times but this works as a generic replacement and it would be way more useful to set a value for each Masonry element as it would allow a contextual “ALL” term usage.

    For example on a site I’m currently working on, I’m using masonry elements to display “All discography albums” or “All our artists” or “All musicians”.

    Especially in french, the default translation of “ALL” is ‘TOUT’, but this term is only correct for masculine terms and does not work, for example, for “Toutes les images”, since “image” is a feminine noun.

    Is there a code snippet that would allow a custom field in the Masonry Element configuration for the “ALL” value of each masonry ?

    #1480989
    mosaic
    Participant

    Hi, I recently posted about changing the featured image size on my blog posts here: https://kriesi.at/support/topic/blog-post-featured-image-size-4/

    I don’t know if it’s related, but the thumbnails on the related entries element at the bottom of my blog posts are stretched.

    Hi Ismael,

    Thank you for your answer.
    Please find a screenshot :

    Best regards

    #1480971

    Hi,

    The images are fading in on our end. Did you install any lazy loading plugins? We recommend enabling pagination and try to reduce the number of images on the page. This should improve the loading speed.

    You can also add this css code to adjust the transition duration:

    .avia_desktop.avia_transform3d .av-masonry-animation-active .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry,
    .avia_mobile.avia_transform3d:not(.avia-mobile-no-animations) .av-masonry-animation-active .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
    	animation: avia_masonry_show 1.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.075);
    }

    Default is 0.8s.

    Best regards,
    Ismael

    #1480970

    Hey aledef,

    Thank you for the inquiry.

    You have to add the image size using the avf_modify_selectable_image_sizes filter.

    Example:

    function avf_modify_selectable_image_sizes_mod( array $selectableImgSize, array $imgSizes ) 
    {
        $selectableImgSize['medium_squared'] = 'Medium squared';
        return $selectableImgSize;
    }
    
    add_filter( 'avf_modify_selectable_image_sizes', 'avf_modify_selectable_image_sizes_mod', 10, 2 );
    

    Let us know if this works.

    Best regards,
    Ismael

    #1480943

    Wonderful! Thank you, this is very helpful! Items 1 and 4 are solved—the backgrounds work perfectly with a tweak to the image file and adding a norepeat..

    Items 2 and 3 remain issues.
    2. The categories don”t have a strong intro. I need to add an H2 text category title at the top.
    –> The Header Title should not display on all pages. Changing Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs ▸ Display only title, displays the title on all pages, which is not wanted. I need the Category title to display on the category page, and the styling needs to match the titles on the other pages (e.g., H2, no line above and below, not positioned so high up).

    3. I need to add an optional category title image. individual categories would have either a unique title image or no title image.

    #1480927
    aledef
    Participant

    Hi,
    I registered a custom image size adding following code to functions.php:

    function add_custom_image_size() {
        add_image_size( 'medium_squared', 600, 600, true ); // true = crop esatto
    }
    add_action( 'init', 'add_custom_image_size' );
    
    function add_custom_image_sizes_to_editor( $sizes ) {
    	return array_merge( $sizes, array(
    		'medium_squared' => __( 'Medium squared' ),
    	) );
    }
    add_filter( 'image_size_names_choose', 'add_custom_image_sizes_to_editor' );

    Now I can see and use my new image size in Wp:

    View post on imgur.com

    But i can’t see it in Enfold ALB elemnts dropdowns:

    View post on imgur.com

    Any help?
    Thank you

    #1480924

    Thanks Ismael. They still don’t fade in and it takes ages to load. It is like it is loading all the images before showing the gallery.
    This is what client wanted:
    https://aswarbyrectory.com/

    #1480908

    Hey hm.stedler,

    Thank you for the inquiry.

    You can set the first image as background of a Column or Color Section element, then add the second image using the Image element. Let us know the result.

    Best regards,
    Ismael

    Hi,
    This is the css that it is using:

    @media screen and (min-width: 768px) {
        .hero:not(.bg-purple-25-gradient) {
            background-image: url(/themes/custom/lp/assets/icons/polygon-midultraviolet.svg);
            background-position: calc(50% - 280px) calc(50% + 50px);
            background-repeat: no-repeat;
            background-size: cover;
        }
    }
    @media screen and (min-width: 1600px) {
        .hero:not(.bg-purple-25-gradient) {
            background-position: calc(50% - 600px) calc(50% + 50px);
        }
    }

    Best regards,
    Mike

    Ahhhhh, I didn’t realize that. Thanks for the insight, Mike. I can make an image in a snap! Is there a way that I can set the image to cover only a portion of the background? I feel like there’s something about positioning in CSS, but I’m not well-versed in it.

    Appreciate your help!

    Hey Orenishii,
    On your example page this is not done with gradient overlay, but with a image, see the link below:
    Screen Shot 2025 04 06 at 11.23.12 AM

    Best regards,
    Mike

    schwabino
    Participant

    I noticed that my client’s site is not showing the slider and gallery images. I updated Enfold to 7.0, and I’m still not seeing them populate.

    Any ideas?

    Thanks
    B

    #1480872

    Hi,
    Thanks for your patience for the category background image with “Dandelion-post-background2.png” you can use this css:

    .category .container_wrap_first {
      background: url(https://templeinacistg.wpenginepowered.com/wp-content/uploads/2025/03/Dandelion-post-background2.png) !important; 
      background-size: contain !important;
    background-color: #f2f0eb !important;
    }

    Screen Shot 2025 04 06 at 7.51.27 AM
    but this image has a white background so adding a background color to the page will not show, if the image had a transparent background the background color would show.
    To show the title you need to enable Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs ▸ Display only title, I did this for you:
    Screen Shot 2025 04 06 at 8.02.58 AM
    To add the same background image and color to the post you could use this css:

    .single .container_wrap_first {
      background: url(https://templeinacistg.wpenginepowered.com/wp-content/uploads/2025/03/Dandelion-post-background2.png) !important; 
      background-size: contain !important;
      background-color: #f2f0eb !important;
    }

    but you still need to use a tranpernt background image for the color to show.

    Best regards,
    Mike

    #1480870

    In reply to: Add notification bar

    Hi,
    When I check your site while not logged in I see your notification bar:
    Screen Shot 2025 04 06 at 7.18.33 AM
    please clear your browser cache and check.
    Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    Orenishii
    Participant

    Hello,

    I would like to use a color section to my page headers, but I don’t want it to cover the entire image. Instead, I’d like a slanted overlay the covers approximately 45% of the total background. I found the documentation to create the gradient in the help files, but couldn’t see anything similar to what I’m trying to accomplish. Could you please advise on how to achieve it? Thank you very much.

    #1480848

    Hey mosaic,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
        .responsive .single-product-main-image {
           margin: 0;
        }
        .woo-variation-product-gallery {
           width: 100%;
           margin-bottom: 0;
        }
    }

    see the screenshot below for the expected results.

    Best regards,
    Mike

    #1480846

    Hey So Evolve,
    You could use the shortcode wand in the classic editor to create your button:
    Screen Shot 2025 04 05 at 4.43.50 PM
    then copy the code to your widget area HTML widget.

    Best regards,
    Mike

    #1480845

    Hi,
    Your site is reporting that the address is not secure “https” and that the server is redirecting the request for this address in a way that will never complete.
    Are you sure that you changed both URLs? Perhaps one did not update correctly. Did you create the https certificate?
    You could ask your webhost to update the certificate and ensure that it is for both the “www” domain and the non “www” domain, ie: a certificate for:
    www.test.com
    test.com
    is two different lines in the certificate
    Nonetheless, since you didn’t have any content on this site, I recommend the easiest path is deleting the WordPress install, ask the webhost to update the PHP version and these:
    Screen Shot 2025 04 05 at 7.26.33 AM
    then install WordPress again, ensuring that all info is for “https”, then add the theme and your demo install should work fine.

    Best regards,
    Mike

    #1480844

    Hi,
    Thanks, this link has a manual color of black added to the span and the link:
    Screen Shot 2025 04 05 at 3.50.05 PM
    you need to change this to blue, view the link in the text element in the “text” tab to adjust the source code
    Screen Shot 2025 04 05 at 3.53.11 PM
    sometimes if you copy and paste text or links in the visual tab the style will also be pasted.

    Best regards,
    Mike

    #1480842

    In reply to: Add notification bar

    Hi,
    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the above code and save.

    Best regards,
    Mike

    #1480838

    In reply to: Enfold update

    Hey Julien ,
    Each license is only purchased once and has lifetime updates, the support for each license is only good for either 6 or 12 months depending on what was purchased.
    If you purchased all of your client licenses in your Envato account, you would also need to purchase the support renewal for your clients in your account. Envato doesn’t allow transfer of licenses.
    As for updates, if all licenses are from your account with your Token, then the client may need your help to update, expressly for older versions that are using the old Envato API, pre v5
    They will first need to be manually updated, and then you can create a new Token for the client. You should be fine after that, unless Envato changes again in the future.
    Also note that Envato has a daily limit on update checks, I believe that is 20, so after 20 checks you will need to wait 24 hours. If one client has an old version that has the old API and checks 20 times, all other of your licenses will not update.
    You will probably need to review each site and manually update everyone to v7.1 and ensure that all Tokens are working, then going forward every thing should be fine.
    Note that the Token needs specific permissions, the Envato Market plugin requires fewer permissions and might be better for you.
    To manually update Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    I hope this helps.

    Best regards,
    Mike

    #1480834
    mosaic
    Participant

    Hi, my WooCommerce product images are full width when viewed on mobile on my websites that use other themes. On my Enfold website they aren’t full width on mobiles and have white space on the right of the image.

    #1480831
    hm.stedler
    Participant

    Ich habe 2 Bilder. Das erste Bild ist 1200 x 400px und eine Foto. Das zweite Bild 600x300px ist ein Text. Nun möchte ich das zweite Bild mit dem Text über das erste Bild legen. Dies soll auch reponsiv sein. Geht das mit Enfold?

    Translate by google – Sorry –
    I have 2 pictures. The first image is 1200 x 400px and a photo. The second image 600x300px is a text. Now I want to overlay the second image with the text on top of the first image. This should also be reprosive. Is that possible with Enfold?

    #1480826

    Hey Emily,
    It looks like you have this error: “Uncaught ReferenceError: h is not defined” for some custom javascript:
    Screen Shot 2025 04 05 at 8.24.29 AM
    Try disabling all of your custom javascript or all of your plugins and check again.
    also clear your site and browser cache before checking again.

    Best regards,
    Mike

    #1480825

    Hi,
    Try going to the layerslider, select the layer, go to “advanced” in the sidebar and add the custom css in a media query:
    Screen Shot 2025 04 05 at 8.10.58 AM
    For Mobile/LANDSCAPE view try this media query and adjust to your device.

    @media only screen and (max-width: 860px) and (orientation: landscape) { 
    /* your css */
    }

    Best regards,
    Mike

    #1480824
    Emily
    Guest

    I’m using your theme Enfold Shop (e-Commerce). I’ve recently encountered some problems, and my image gallery can’t load properly. I don’t know if it’s a conflict with the enfold theme. I recently updated PHP version 8.2. If I can’t display images, I won’t be able to edit all my product pages. This is very bad for my website. I am also asking my hosting customer service whether it is related to my hosting memory.

    And this page on my website can’t be displayed either. Other category pages can be displayed. https://www.smartyleowl.com/shop/

    Looking forward to your reply!

    #1480819

    Hi,
    I viewed your page: https://www.latet.org.il/en/
    But I don’t know which link that you want to be blue, please explain more, perhaps a screenshot would help.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    #1480818

    Hey Ben,
    We can not view or login to your site as it “uses an unsupported protocol” and can not “provide a secure connection”
    see screenshot below and check.

    Please note that we don’t have experience with the wholesale suite plugin and we are limited to supporting third-party plugins. But perhaps we can correct with some CSS.
    Please include a direct link to the form and a screenshot of what you want to change. To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

Viewing 30 results - 1,681 through 1,710 (of 106,480 total)