Forum Replies Created

Viewing 30 posts - 22,201 through 22,230 (of 35,064 total)
  • Author
    Posts
  • in reply to: Move Shop Text Below Product List #1084882

    Hey moonknight066,
    Thank you for the link, but I couldn’t login to make the changes. Try adding this code to the end of your functions.php file in Appearance > Editor:

    function move_shop_content_below_products(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $('<div class="container new-woo-container">' ).insertBefore( '#top.woocommerce-page .container_wrap.footer_color' );
      $('#top.woocommerce-page .woocommerce-products-header .page-description').appendTo('.new-woo-container');
      $('.new-woo-container').css({'margin-bottom': '50px'});
      });
      })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'move_shop_content_below_products');
    

    Then clear your browser cache and check.

    Best regards,
    Mike

    Hey tkumabe,
    Please include the url to the page in question so we can examine the elements. I assume when you say that you are using the “Gutenberg” editor you mean that you are not using one of the Advanced Layout Builder elements, in this case the css to move the captions under the images would be similar to what is found here. But we would need to see the page so we can examine the elements to assist with css.

    Best regards,
    Mike

    in reply to: Logo isnt showing anymore #1084861

    Hi,

    @elituchy
    thanks for the link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    div .logo {
        position: relative !important; 
    }
    #header .logo img {
        margin-top: 0px !important; 
    }

    Best regards,
    Mike

    in reply to: How to style aweber opt-in box with CSS? #1084853

    Hey lmackinnon,
    Please like to your page so we can assist with css for your aweber form. Since Enfold may have a few different color schemes, please try adding a Enfold form with the correct colors on a test page for us to see.

    Best regards,
    Mike

    in reply to: How to implement tab layout from Kreisi Demo #1084851

    Hey webworm72,
    The demo page that you have linked to is created with the Advanced Layout Builder using the “Tabs” element
    2019-03-30-072139
    But since you are asking about the shortcode I assume you are using the WordPress Classic Editor to create your page. In this case you can create the shortcode for the element by using the “Shortcode Wand” and choose “Tabs”
    2019-03-30-072627
    Then when the element editor opens be sure to choose “Display Tabs on the left”
    2019-03-30-071832
    and then add your content to the tabs.
    If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: tables set up #1084848

    Hey macika,
    Thank you for the link to your site, but I’m not quite sure I understand as I don’t see a table with icons. Is the link correct?
    Perhaps a screenshot of what you are trying to do would help.

    Best regards,
    Mike

    in reply to: Set reply to header from user entered mailadress. #1084804

    Hi,
    Sorry for the late reply, please try using these two functions in your functions.php, it adds the visitor email as the reply-to address:

    //have the visitor address in the Reply-To: header instead of the From: header
    add_filter('avf_form_from', 'enfold_contact_form_change_from', 10, 3);
    function enfold_contact_form_change_from($from, $new_post, $form_params) {
            global $enfold_visitor_from;
            $enfold_visitor_from = $from;
            $from = "info@<domain>";
            return $from;
    }
    
    add_filter( 'avf_form_mail_header', 'enfold_contact_form_add_replyto', 10, 3 );
    function enfold_contact_form_add_replyto( $header, $p1, $p2 ) {
            global $enfold_visitor_from;
            $header .= 'Reply-To: ' . $enfold_visitor_from . "\r\n";
            return $header;
    }

    As I recall you need to use both of these together, so in the top one please edit your “from” address, but you could first try testing just the bottom one as it adds the “reply-to” address.

    Best regards,
    Mike

    in reply to: Problems with spacing in tabs'menu #1084795

    Hi,
    Sorry, this doesn’t seem to be going well for mobile, how would you feel about using a different element for mobile? Perhaps we could use a more mobile friendly element and write some css to hide one and show the other only for mobile?
    One idea might be to use the “Content Tabs” because they work well for mobile and we can add the product grid to the tabs as shortcode, here is a screenshot of a test I did:
    2019-03-29-234215

    Best regards,
    Mike

    in reply to: Events Countdown #1084782

    Hi,
    That is great! I’ll let the dev team know that it is working, I will also leave this thread open because since I modified your theme files updating the theme will break it, and unless this is added to the next update I will need to patch your files again.
    We will see if it’s added to the update when it comes out.

    Best regards,
    Mike

    in reply to: RSS feed broken since 4.5.5 using ALB ? #1084776

    Hi,
    Sorry for the late reply, this does seems to be the same issue. Gunter has an open GitHub issue page for the two you linked to, so I added this thread to it also.
    Please try the solution that he posted, but keep a copy of the original files, and let us know if this helped.
    If it doesn’t help please include an admin login & FTP access in the Private Content area so examine closer.
    Thank you for your patience.

    Best regards,
    Mike

    in reply to: Password protected pages not working with Enfold 4.5.4 #1084774

    Hi,
    I tested by adding a password to my “About Us” page that was created using the ALB
    2019-03-29-221311
    Then I went to the page, logged in, & logged out, in Chrome & Firefox and in all 4 cases I was asked for a password:
    2019-03-29-220949
    and after I gave the password the page was reloaded to chow the content. This seems to be working correctly.
    What happens when you follow these steps? Could your error be from a plugin?

    Please include an admin login in the Private Content area so I can test your site?

    Best regards,
    Mike

    in reply to: scrolling not jumping #1084771

    Hi,
    When you add the css to a code block element, like I did before it must be wrapped in a “style” tag:

    <style> ... </style>

    It also won’t work in a text block element.
    I don’t know when requests will be more relaxed, but I’ll keep checking yours each time I login.
    So to change the logo for black or white like it is right now, I used two logos, one at Enfold Theme Options > Logo
    2019-03-29-214057
    and the other at Enfold Theme Options > Header > Logo-Transparenz
    2019-03-29-214342
    This was your #4 question above.
    Best regards,
    Mike

    in reply to: Events Countdown #1084770

    Hi,
    Strange, I found your event at 6:03pm, LA time, and since the event was past at that point, I changed the event to 6:30pm and it worked correctly:
    2019-03-29-210525
    2019-03-29-210553
    I then thought that perhaps by me putting the start & end time of the event as the same it was thoughing it off so I changed the end time to 9:30pm, but it still was correct:
    2019-03-29-210855
    2019-03-29-210910
    So I read the instructions from the dev team again looking for clues and they said:

    If you change the timezone on your computer it might be necessary to restart.
    Do not forget to clear browser cache.

    Did you clear your cache? What time is your computer set to?
    I will ask the dev team to take a look once I hear back from you because I don’t understand why I can’t recreate your issue on your site.

    Best regards,
    Mike

    in reply to: Masonry Gallery: Image doesn’t open in lightbox #1084576

    Hi,
    I assume this solution was successful and we can close this now. Glad we were able to help, Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Adjust space between two grid rows #1084571

    Hi,
    Yes the css is very targeted, for your new section also use this css:

    #top.page-id-337 #after_submenu_2 > .container > .content {
    padding: 10px 0 !important;
    }

    Then please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Generated Shortcode STILL DOES NOT WORK #1084473

    Hi,
    Please see my reply to your other post, it seems to be an issue with your plugin as the shortcode seems to be working correctly.

    Best regards,
    Mike

    in reply to: Generated Shortcode does not work #1084472

    Hi,
    I tried to investigate your page with the shortcode from your custom plugin, by creating a copy at the url in the Private Content area and removing the according element so that there was only the shortcode according, expecting that the shortcode would work, but with the wrong colors. But the shortcode didn’t work.
    Yet if I recreate the shortcode with our shortcode tool it works correctly. I don’t believe that this is a shortcode issue, but an issue with your custom plugin.
    When I check your custom plugin I find this error for “title”

    $toggles .= do_shortcode("[av_toggle title='" . $titel . "' tags='' av_uid='av-ihbnj']" . $details . "[/av_toggle]");

    which is braking it, please try reviewing your custom plugin for errors.

    Best regards,
    Mike

    in reply to: BUG? Pagination buttons on posts do not work #1084468

    Hi,
    I wanted to give you an update, the dev team believes they may have found the issue, but they are still working on the solution.
    This is actively marked in our GitHub, Thank you for your patience.

    Best regards,
    Mike

    in reply to: scrolling not jumping #1084466

    Hi,
    To have the word “moebel” slowly fade in, please try this css:

    span.moebel {
      opacity: 1;
      animation-name: fadeInOpacity!important; 
      animation-timing-function: ease-in !important; 
      animation-duration: 3s!important; 
    }
    
    @keyframes fadeInOpacity {
      0% {
        opacity: 0;
      }
    50% {
        opacity: 0.5;
      }
      100% {
        opacity: 1;
      }
    }

    Best regards,
    Mike

    in reply to: Picture and text zoom on smartphone #1084461

    Hi,
    If you use the “final code” on the page above, please ensure you are not adding the first line with the ?php
    you would use this:

    function address_mobile_address_bar() {
    	$color = "#008509";
    	//this is for Chrome, Firefox OS, Opera and Vivaldi
    	echo '<meta name="theme-color" content="'.$color.'">';
    	//Windows Phone **
    	echo '<meta name="msapplication-navbutton-color" content="'.$color.'">';
    	// iOS Safari
    	echo '<meta name="apple-mobile-web-app-capable" content="yes">';
    	echo '<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">';
    }
    add_action( 'wp_head', 'address_mobile_address_bar' );
    

    Other than that it looks right and doesn’t cause an error on my localhost, but I’m unable to test beyond that. If this still doesn’t help try Googleing for alternatives.
    Sorry that I couldn’t be of more assistance.

    PS: Have you tried Upwork.com ?
    I bet you could hire someone for $5 to do this.

    Best regards,
    Mike

    in reply to: Update theme version Enfold 3.5.1 #1084459

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Center social media icons #1084458

    Hi,
    I took a look and the css in the code block had some html brakes in it, braking it :)
    2019-03-28-224321
    I adjusted it to this:

    .av_font_icon {
    display: inline-block !important;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Events Countdown #1084454

    Hi,
    Thanks for the screenshot and the explanation.

    Here is screen shot after your post. I noticed that the tz was set to utc-7 on this event (did you do that?)

    I didn’t make any changes because I couldn’t login before, the screenshot was from my computer.

    I was able to login today, so I created a test manual event so I could better document the error to explain to the dev team so that they can help.
    So at the time of my test your time was 2019-03-28 17:52:05 in Los Angeles accourding to your time and date on your WordPress > Settings > General > Date Format, I also confirmed on Google, so I created an event about one hour in the future (7:00pm) and added a countdown timer to it
    2019-03-28-205541
    Then I published and viewed on the front end and the time on the countdown timer was correct (within the 3 minutes it took me to do this)
    2019-03-28-205624

    So after this I realized that I didn’t check the countdown timer on your homepage, so I did another one that was about 55 minutes in the future, here is the backend:
    2019-03-28-220334
    here is the front end:
    2019-03-28-220425
    and here is your homepage countdown timer:
    2019-03-28-220448
    So I’m not sure what I’m doing differently than you were when you tried to create a manual event and had gotten the 7 hour error?

    *please don’t worry I deleted the test events and they were only live for less than a minute.

    While I was looking at the backend of your events I noticed that your event editor was showing the event rows as a column, this typically occurs when there is a plugin conflict. There could be other reasons, but there were no errors in the browser console.
    2019-03-28-211814
    But this didn’t seem to cause an error in the countdown timers that I created.

    Best regards,
    Mike

    in reply to: Events Countdown #1084092

    Hi,
    Both /avia-shortcodes/countdown & /shortcodes/events-countdown were updated.
    I see the new timezone option is not showing on events-countdown element, but on the event page there was already a timezone option:
    2019-03-28-073605
    I believe the new events-countdown file is managed in that option, when I test changing this timezone it changes the
    events-countdown.
    Please try this.

    Best regards,
    Mike

    in reply to: Events Countdown #1083917

    Hi,
    Thanks for the FTP login, but I couldn’t login to WordPress. I went ahead and renamed the files that needed to be replaced with a “-old” on the end and uploaded the new ones. This is so we can roll back if you wish. I also checked your site to ensure it didn’t crash, but it still seemed to be running properly :)
    Since I couldn’t login I’m not sure if this is working for you, but I tested on my localhost and it works.
    You will now see a “Timezone” option in the Animated Count Down element:
    2019-03-27-231235
    Please select a timezone in the timezone selectbox that you wish to use, it can be different than the timezone WordPress uses in the WordPress > Settings > General > Date Format field and it uses UTC, you’ll just need to make the adjustment to suit.
    Please be sure to clear your cache a few times as javascript files were replaced for this modification and they can be a little tricky to clear from the cache, also check any cache plugin and I see your host is using “LiteSpeed” so there is a cache on your server too.
    Please let us know if this helps.

    Best regards,
    Mike

    in reply to: Picture and text zoom on smartphone #1083905

    Hi,
    I have not seen this before but my research finds that it only works for mobile Android devices The code you posted was broken, try using the code at the link above. But I also see that it is from 2016 so I don’t know if it still works, but I can’t test it on my desktop and it is outside of our support scope since it is not for the theme or website.
    Perhaps this plugin would work better: Mobile Address Bar Changer

    Best regards,
    Mike

    in reply to: Icon Grid : Flip #1083897

    Hi,
    If you have created two pages that you don’t want to lose, then yes, please try following the steps I described earlier

    Best regards,
    Mike

    in reply to: Updating page does not update page #1083896

    Hi,

    @5ivecanons
    the 403 error you are getting is because Envato has a daily limit on requests, even if you are updating multiple sites. Also their cookie may trigger an error if you are updating multiple sites. Please wait 24 hours and then when you try again try using the incognito mode of your browser.

    Best regards,
    Mike

    Hi,
    Thanks for sharing your code updates, and glad this works for you.
    Thanks again for the lunch offer :)

    We will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Update theme version Enfold 3.5.1 #1083889

    Hi,
    Thanks for the login, I took a look at your menu items for “LED light boxes” so on desktop the menu items have a url and work fine, but on mobile the submenu items links are not linking.
    This is because in your burger option Menu Icon Submenu items is set to Display submenu items on click > Do not create a clone
    For that setting you will see this note:

    Since you selected to display submenu items on click or on hover, the parent menu item does no longer navigate to the URL it contains, but toggles the visibility of its submenu items. If you want users to be able to open the parent menu URL the theme can create a clone of that item in the submenu

    Changing this to: Create a clone for the title menu item or if you change the menu to Always display submenu items will make the links work.
    I set it to Always display submenu items to demonstrate.

    The Envato Market Plugin will help you update easier, it is not in the WordPress plugin directory because it only works for customers. There is no reason to be worried.

    Best regards,
    Mike

Viewing 30 posts - 22,201 through 22,230 (of 35,064 total)