Forum Replies Created

Viewing 30 posts - 3,931 through 3,960 (of 34,604 total)
  • Author
    Posts
  • in reply to: showing feedzy posts instead of mine #1432224

    Hey daves1997,
    It looks like you are using the RSS Aggregator by Feedzy plugin, I’m not familiar with this plugin, try checking the documentation or the video tutorials.

    Best regards,
    Mike

    in reply to: Which multiple image sizes are safe to disable and delete #1432222

    Hi,
    Please review the functions.php file around line 296 it shows the 12 image sizes that the theme creates and the description for each:

    $avia_config['imgSize']['widget'] 			 	= array( 'width' => 36,  'height' => 36 );						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array( 'width' => 180, 'height' => 180 );		                // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array( 'width' => 1500, 'height' => 430 );					// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array( 'width' => 1500, 'height' => 630 );					// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array( 'width' => 1500, 'height' => 1500 , 'crop' => false );	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array( 'width' => 495, 'height' => 400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array( 'width' => 260, 'height' => 185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array( 'width' => 845, 'height' => 684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array( 'width' => 710, 'height' => 375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array( 'width' => 705, 'height' => 705 , 'crop' => false );	// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array( 'width' => 845, 'height' => 321 );		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array( 'width' => 1210, 'height' => 423 );					// images for fullsize pages and fullsize slider

    so depending on the elements that you are using you can decide to remove some of these, if you which.
    WordPress adds 4 other sizes, small, medium, medium_large, large, and other plugins may add other sizes, such as woocommerce.
    Removing these sizes will depend on your site layout and the devices that people use, you will need to test and decide if you need these sizes. Removing some sizes will make your site use larger images than needed which could slow down your loading time, or on very large screens some of your images may seem to be blurry because a smaller image is used. So there is no quick answer, you will just need to test.
    You may also note that the thumbnails that WordPress creates may be larger than the original, so 30k of images might be over 9 gigs, here is a easy way to compress 30k of images down to under 900 mb without a plugin and save a lot of space.

    Best regards,
    Mike

    in reply to: Real Cookie Banner can´t block ReCaptcha in Enfold Form #1432221

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Aligning elements in header #1432136

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hey ti2media,
    Thank you for the link to your site, when I check it sees as to have requested, perhaps you have already solved this?
    Enfold_Support_4572.jpeg

    Best regards,
    Mike

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Mobile view- Email field Border #1432055

    Hi,
    I updated your custom css in your Quick CSS from this:

    #top div .av-dark-form input[type="text"] {
      color: #222;
      border-color: #222;
      border-width: 1px !important;
      background-color: transparent;
      font-size: 15px !important;
      letter-spacing: 1px;
    }

    to this:

    #top div .av-dark-form input[type="text"],
    #top #main .av-dark-form input[type="email"] {
      color: #222;
      border-color: #222;
      border-width: 1px !important;
      background-color: transparent;
      font-size: 15px !important;
      letter-spacing: 1px;
    }

    and now your email field border width matchs the other fields
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Aligning elements in header #1432051

    Hey dweddell,
    Thank you for the link to your site and your screenshot, try adding a max-width: 33%; to each of your three elements for mobile like this:

    @media only screen and (max-width: 767px) { 
    	.responsive #top #header #header_main .inner-container .main_menu {
        order: 1;
        flex-basis: auto;
        align-items: center;
        align-self: center;
        height: inherit !important;
        width: 33%;
    }
    .responsive #top #header #header_main .inner-container .logo {
        order: 2;
        flex-basis: auto;
        min-width: 100px;
        z-index: 9;
        transform: translateY(30%);
        margin-top: -30px;
        max-width: 33%;
    }
    .responsive #top #header #header_main .inner-container .widget {
        order: 3;
        flex-basis: auto;
        padding: 0;
        clear: none!important;
        justify-content: center;
        align-self: center;
        align-items: center;
        z-index: 1;
        max-width: 33%;
    }
    }

    This is the expected results:
    Enfold_Support_4570.jpeg

    Best regards,
    Mike

    in reply to: padding 0 #1432048

    Hey dondela,
    It is from the main container and not the slider, Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #main .container_wrap_first > .av-section-cont-open > .content {
    	padding: 0;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Video Media Element not showing video #1431998

    Hi,
    Thanks for the link to your page, the first video element (not the code block) has the correct link format youtube.com/watch?v= and when I test it on my site it works correctly, please see the link in the Private Content area.
    Try disabling all of your plugins. If that resolves the issue, reactivate each one individually until you find the conflict.
    I’m seeing these errors from your site but I don’t know what could be causing them, perhaps a plugin.
    Enfold_Support_4568.jpeg

    Best regards,
    Mike

    in reply to: create a popup #1431995

    Hey schweg33,
    You would need to use a plugin to create a flyout panel like that, perhaps one like this

    Best regards,
    Mike

    in reply to: Change with definitions for tablets/smartphones #1431994

    Hi,
    On the most part that is correct, we don’t have a list it depends on the elements that you are using.

    Best regards,
    Mike

    in reply to: copy pages from one staging to another #1431993

    Hi,
    I’m not sure about that. Unless there is anything else we can assist with on this issue, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Anchor links not working on translated page #1431938

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Favicon not showing #1431937

    Hi,
    It sounds like the GoogleBot is prefuring the default favicon location, try creating a real favicon.ico, you can use a free online image converter, then upload it to your server root directory and then go to your Google Search Console and request a new crawl of your site, after Google crawls your site the real favicon.ico should show.

    Best regards,
    Mike

    in reply to: Submenu Custom Icon #1431934

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Choose of size in shop looks very special on tablets #1431932

    Hi,
    Thank you for the link to your site and the screenshot, but I’m not able to reproduce this with my laptop rotating it from portrait to landscape and back again, or with the browser inspector emulating different screen sizes and rotating. But you could try this script in your child theme functions.php to reload the page after a screen resize and perhaps it will help with your laptop.

    function custom_resize_script() { ?>
      <script>
    var resizeId;
    window.addEventListener('resize', function() {
      clearTimeout(resizeId);
      resizeId = setTimeout(doneResizing, 300);
    });
    
    function doneResizing(){
      location.reload();
    }
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_resize_script', 99 );

    Best regards,
    Mike

    in reply to: Change with definitions for tablets/smartphones #1431930

    Hi,
    You would need define each one separately, there is not a way to change the setting for all elements because each element has the media query added in it’s CSS.

    Best regards,
    Mike

    in reply to: Please give me the shortcodes #1431926

    Hi,

    @Createve_Solutions
    did the shortcodes that Yigit posted for you solve what you were trying to do?
    If you need more you can install Enfold on a localhost or a subdomain and Enable the Avia Layout Builder Debugger to see the shortcodes from the demos. After importing demos on your test site you can the reset the site to test other demos and copy their shortcodes.

    Best regards,
    Mike

    in reply to: copy pages from one staging to another #1431811

    Hey Yory,
    I recommend using the WordPress ▸ Tools ▸ Export ▸ All content and use the xml file to import to your new site, note that you will want your old site to still be live when you import into the new site as the new site will import the images directly from the old site.

    Best regards,
    Mike

    in reply to: Video should not be shown on mobile devices #1431810

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Lightbox now not working. #1431809

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    If you wish to hire someone at codeable.io that may be a good option if you are not sure what customizations were made on your site. Typically there should be no issue with the latest version and the woocommerce cart, so I would assume that if you updated to Enfold v5.6.9 you would not have any issues. But I recommend that you test the update on a staging site since we don’t know what kind of customizations your site has. This is what I have been trying to advise so far.
    If after you update and you still have a issue due to the customizations we can examine further and try to advise, but if you just want someone to take over and update and fix any issues that are found after updating right away ASAP then codeable.io may be a good option for you.

    Best regards,
    Mike

    in reply to: ENFOLD – Own Font Set #1431805

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Submenu Custom Icon #1431804

    Hi,
    Please link to your page so we can examine the elements and advise.

    Best regards,
    Mike

    in reply to: Accordion bug #1431803

    Hi,
    Glad that this have helped, I only added a new child theme.
    I don’t know what was wrong with your old child theme as I didn’t see any issues in it, I believe that this points to a caching issue.
    Nonetheless with the new child theme you site now doesn’t have the error, so I imagine that we close this thread then?

    Best regards,
    Mike

    in reply to: Enfold and PHP 8 #1431712

    Hey Kate,
    Please try updaing to Enfold v5.6.9 there was some PHP updates after your version.

    Best regards,
    Mike

    in reply to: Latin text in search results #1431710

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Aligning rows top and bottom within a grid #1431709

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Above you wrote that the site was created by a guy 7 years ago, are you sure that you purchased the theme, or was it him? If you had purchased it, you would see it in your Theme Forest account. You may need to purchase the theme though your account so that you will be able to update your site now and in the future.
    I believe that host gator offers the staging site option, so you should ask them how to use it, and also ask them how to backup your site and restore it, so if anything goes wrong you can restore your site.
    I don’t recommend using backup plugins, the webhost server backup is always better and more reliable.

    Best regards,
    Mike

Viewing 30 posts - 3,931 through 3,960 (of 34,604 total)