Forum Replies Created

Viewing 30 posts - 9,361 through 9,390 (of 34,916 total)
  • Author
    Posts
  • Hi,
    The Related Products is not in the footer, it is in the proper section above the footer, it has a black background color because you picked this color in the
    Enfold Theme Options ▸ General Styling ▸ Alternate Content ▸ Alternate Content Background Color
    shop_product_related_products_background_color.jpeg
    please change this color to white or whatever color you want it to be.

    Best regards,
    Mike

    #454e57

    in reply to: Mobile version: Color of main menu and burger menu #1378471

    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: Change string before author in blog article #1378411

    Hi,
    Glad to hear, if you are using a Child Theme and the code is in your child theme functions.php then it will work after each update, if it is in your parent theme functions.php and you don’t want to add a Child Theme try using the WPCode plugin and add the code as a “PHP snippet”.
    Let us know when you have this working and we will close this thread.

    Best regards,
    Mike

    in reply to: Mobile version: Color of main menu and burger menu #1378407

    Hi,
    Thanks for trying but the child theme stylesheet is still hidden, I believe that you have custom css in it but it sounds like you may not have experience with FTP so try this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to override your child theme stylesheet, it is not the best approach but it should work:

    @media only screen and (max-width: 989px) {
    .html_mobile_menu_tablet .header_color div .av-hamburger-inner, 
    .html_mobile_menu_tablet .header_color div .av-hamburger-inner::before, 
    .html_mobile_menu_tablet .header_color div .av-hamburger-inner::after {
        background-color: #af7e34 !important;
    }
    #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
    	color: #af7e34 !important;
    }
    }

    After applying the css, please clear your browser cache and check.
    If you still see the white try clearing your server cache also.

    Best regards,
    Mike

    in reply to: Change string before author in blog article #1378401

    Hi,
    Thanks for the feedback, since the author link is now in the categories span the hover color gray was the new color, so add this css to make the categories and author hover color blue like it was when it was below:

    .html_modern-blog #top.single-post div .main_color .blog-categories a:hover {
    	color: #88bbc8;
    }

    If you don’t want the categories to be blue on hover only the author try this css:

    .html_modern-blog #top.single-post div .main_color .blog-categories .author a:hover {
    	color: #88bbc8;
    }

    This is the new script to move the author link and the backslash:

    function move_author_and_replace_da() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    var moveAuthor = document.querySelector('#top.single-post .post-meta-infos .blog-author.minor-meta');
    var appendtoDiv = document.querySelector('#top.single-post .post-entry .blog-categories.minor-meta');
    var authorBackslash = document.querySelector('#top.single-post .post-meta-infos .text-sep');
    if (!!moveAuthor) {
    appendtoDiv.appendChild(authorBackslash);
    appendtoDiv.appendChild(moveAuthor);
    }
    });
    
    var changeAuthorNode = document.querySelector('html[lang="it-IT"] #top.single-post .post-meta-infos .blog-author.minor-meta');
    if (!!changeAuthorNode) {
    changeAuthorNode.childNodes[0].replaceWith('A cura di ');
    }
    
    var changeMasonryAuthor = document.querySelector('html[lang="it-IT"] .av-masonry-author.meta-color.author');
    if (!!changeMasonryAuthor) {
    var search = "da ";
    var replacement = "A cura di ";
    document.body.innerHTML = document.body.innerHTML.split(search).join(replacement)
    }
    </script>
      <?php
    }
    add_action('wp_footer', 'move_author_and_replace_da');

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Avia Layout Editor on Posttype The Events Calendar #1378315

    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: How would I achieve the Parallax look (plus a little more) #1378313

    Hi,
    Thanks for your patience, to have the 3 boxes over a slider you would use a negative margin, in the demo above the first column of the row has a negative -80px margin for the row:
    Enfold_Support_0052.jpeg
    When you say that you want each column highlighted on mouse-over, do you mean you want the background color to change or the column to scale a little larger?

    Best regards,
    Mike

    in reply to: Critical Issue and Clashes #1378312

    Hi,
    Thanks for the feedback, I tried to login and follow your steps above to see the error with MyWorks Sync, but I was not able to follow the steps, I went to the backend WooCommerce > Orders but didn’t find “new orders” or the product “Screen Printing”
    Please create a screencast of the steps to see the error so we can view the steps and then follow along. Perhaps then we can get an idea what is causing the error.
    This is a test site correct? So we can disable plugins without causing any impact to your business?
    Best regards,
    Mike

    in reply to: Change string before author in blog article #1378309

    Hi,
    Please remove the above function so I can test and try again.

    Best regards,
    Mike

    in reply to: Change string before author in blog article #1378267

    Hi,
    Thanks for the link to your site the following function will move the author link on single posts up to under the title next to the category link and for Italian language posts change the “Da” to “A cura di”, it will also change this for your masonry grid on your /blog/ page.
    Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function move_author_and_replace_da() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
      var moveAuthor = document.querySelector('#top.single-post .post-meta-infos .blog-author.minor-meta');
      var appendtoDiv = document.querySelector('#top.single-post .post-entry .blog-categories.minor-meta');
      var authorBackslash = document.querySelector('#top.single-post .post-meta-infos .text-sep');
      if (!!moveAuthor) {
      var clone = moveAuthor.cloneNode(true);
      appendtoDiv.appendChild(moveAuthor).setAttribute('style','margin-left:10px');
      authorBackslash.setAttribute('style','display:none');
      }
    });
    (function($){
    $('html[lang="it-IT"] #top.single-post .post-meta-infos .blog-author.minor-meta').contents().filter(function() {
      return this.nodeType == 3
    }).each(function(){
      this.textContent = this.textContent.replace('da ','A cura di ');
    });
    $('html[lang="it-IT"] .av-masonry-author.meta-color.author').text(function(index, text) {
        return text.replace('da ', 'A cura di ');
    });
    })(jQuery);
     </script>
      <?php
    }
    add_action('wp_footer', 'move_author_and_replace_da');

    After applying, please clear your browser cache and check.
    Please see the screenshot in the Private Content area for the expected results.

    Best regards,
    Mike

    in reply to: Mobile version: Color of main menu and burger menu #1378252

    Hi,
    I think one of your plugins is blocking access, please try disabling your plugins to see if the theme editor shows, if not please include FTP access.

    Best regards,
    Mike

    in reply to: Change string before author in blog article #1378174

    Hi,
    Thanks for your question, we could use javascript to change the “DA” to “DI” and move the line to under the title for Italian language blog posts,
    but we will need a link to a sample post to evaluate, please link to a post on your site.
    Also do you want the date and the author moved under the title, or just the author?
    I assume that you also want this moved in your other language too?

    Best regards,
    Mike

    in reply to: Mobile version: Color of main menu and burger menu #1378172

    Hey Lene,
    Thanks for the link to your site, I see that you added the color #af7e34 to the advanced styling, but the mobile menu font color seems to be coming from css in your child theme like this:

    #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
        color: #ffffff;}

    but I don’t see access to your child theme stylesheet or to the WordPress ▸ Customize ▸ Additional CSS
    Please check these two areas for css colors for the mobile menu, they would override the advanced styling field.

    Best regards,
    Mike

    in reply to: Contact form: Autorespond mail not sending #1378168

    Hi,
    Thank you for your patience, I did and didn’t hear back but it was before the holiday so it might have been missed as the list grew, I asked again today.
    I see that the email in your form is a different domain than the site, so perhaps that is triggering it to be marked as spam, some mail servers auto-delete some spam messages.
    Try using SMTP on your site by installing the plugin WP Mail SMTP with an email account from your website domain and use that email address in the form, so the email to you the admin is the same domain and the autoresponder email to the visitor is also from the same domain.
    Then create a second test email from the same domain to test as the visitor just to see if it works, if so then test a different visitor email from a different domain to see if that works.

    Best regards,
    Mike

    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,
    Thanks for the feedback, when I check I see that you have set the width of the boxes with this css:

    #willkommen .box {
        max-width: 22em;
    }

    which leaves a white margin on the right site, to make the margin equal on both sides try adding this css:

    @media only screen  and (max-width: 767px) { 
    .responsive #top #wrap_all .flex_column.box {
    	  margin: auto;
    }
    }
    

    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Increase size of text panel in Post window #1378145

    Hi,
    I tested further and found that the text area didn’t expand to the content height only when using the Block Editor, when using the Classic Editor it expanded to the content height correctly.
    I added this code to your site to correct only for the Block Editor, please clear your browser cache and check.

    add_action('admin_head', 'custom_editor_height');
    function custom_editor_height() {
      echo '<style>
        .wp-admin.block-editor-page .avia-modal-edit-alb-element .mce-edit-area.mce-container.mce-panel iframe {
    	height: 100vh !important;
    }
      </style>';
    }

    Best regards,
    Mike

    in reply to: Pagination disappears on some pages #1378126

    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: Others mobile optimization #1378124

    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: Increase size of text panel in Post window #1378057

    Hey John,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_action('admin_head', 'custom_editor_height');
    function custom_editor_height() {
      echo '<style>
        .avia-modal-edit-alb-element .mce-edit-area.mce-container.mce-panel {
    	height: 56vh;
    }
      </style>';
    }

    Best regards,
    Mike

    in reply to: Pagination disappears on some pages #1378052

    Hi,
    Thanks for the feedback, I tried to test it on my demo site as our demo posts use tags and I have not noticed pagination errors from posts with tags, but I was not able to recreate an error.
    Are you using the blog post element with standard WordPress editor posts?
    Can you explain in more detail how we can recreate this error?
    Perhaps try disabling your plugins and any custom functions and see if the error continues.

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, it sounds like the webhost has disabled specific PHP functions that prevent the normal import method.
    You could try the manual import method as described in our documentation
    If this also fails due to the disabled PHP functions, try creating a localhost WordPress install and import the demo and then use the plugin Duplicator and migrate your localhost version to your webhost, see the video on the plugin page if you have not used this plugin before, it is quite easy.

    Best regards,
    Mike

    in reply to: Advanced Layer Slider: reveal text on hover #1378043

    Hi,
    Thanks for the feedback, I see your last message is “Nevermind” shall we close this then?

    Best regards,
    Mike

    in reply to: add button to portfolio grid #1378041

    Hi,
    This is because the pagination reloads the page, see the url in the address bar changes, there is not a way to avoid this.

    Best regards,
    Mike

    in reply to: Google Font "montserat" lädt trotz lokaler Einbindung #1378037

    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: Theme customization not available – critical error #1378020

    Hi,
    teppamati try going to Enfold Theme Options ▸ Import/Export ▸ Iconfont Manager and remove the icon
    Enfold_Support_0046.jpeg
    and then try installing this iconfont
    If it doesn’t install then check that you have the PHP ZipArchive Extension enabled on your localhost, it is required for your server to extract zip files.

    Best regards,
    Mike

    in reply to: Removing "Protected:" part from posts' titles #1378003

    Hey sdim,
    Thanks for your question, try using a lock emoji like this:

    add_filter( 'protected_title_format', 'remove_protected_text' );
    function remove_protected_text() {
    return __('🔒%s');
    }

    Enfold_Support_0045.jpeg

    Best regards,
    Mike

    in reply to: Registered for support but can't change my email #1378001

    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: Registered for support but can't change my email #1377999

    Hi,
    try the details below.

    Best regards,
    Mike

    in reply to: Registered for support but can't change my email #1377996

    Hi,
    Please try entering your purchase code here it should then ask for your email address to send your password.

    Best regards,
    Mike

Viewing 30 posts - 9,361 through 9,390 (of 34,916 total)