Forum Replies Created

Viewing 30 posts - 26,161 through 26,190 (of 34,940 total)
  • Author
    Posts
  • in reply to: BLOG …. Request for help #988676

    Hi,
    Oh, I see, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function move_date_script(){
      ?>
      <script>
      jQuery(window).load(function(){
      jQuery( '.av-magazine-entry' ).each(function() {
      jQuery( this ).find( 'time.av-magazine-time' ).insertAfter( jQuery(this).find('h3.av-magazine-title') );
      });
      });
      </script>
      <?php
      }
      add_action('wp_footer', 'move_date_script');

    Best regards,
    Mike

    in reply to: Pictures not showing on tab #988672

    Hi,
    Please try the same code in WordPress > Customize > Additional CSS and clear any cache plugin and your browser cache.

    Best regards,
    Mike

    Hi,
    Please include FTP access in the Private Content area so we can take a look.

    Best regards,
    Mike

    in reply to: Media library shows empty boxes, no images #988667

    Hi,
    You are welcome, please feel free to open a new thread if we can assist in the future. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Margin/Padding for Page and Post Content? #988530

    Hi,
    There was another 50px of padding, Please see screenshot in Private Content area for where I mean.
    Now your content is sitting on top of your image that is above your footer.

    Best regards,
    Mike

    in reply to: Enfold Child Options are partially not working #988528

    Hi,
    The Google fonts are built in, and are only loaded when called.
    you can remove them with this code to the end of your functions.php file in Appearance > Editor:

    //remove google fonts
    add_action( 'init', 'enfold_customization_switch_fonts' );
    function enfold_customization_switch_fonts() {
    global $avia;
    $avia->style->print_extra_output = false;
    }

    but then you would need to add you own fonts.

    Best regards,
    Mike

    in reply to: Image size #988524

    Hi,
    The setting was at: Enfold Theme Options > Sidebar > Page sidebar navigation
    I unchecked it for you.

    Best regards,
    Mike

    in reply to: Enfold Child Options are partially not working #988521

    Hi,
    Glad we could help :)
    Which “other” Google fonts? Do you mean all of the ones in the drop down list the advanced styling?

    Best regards,
    Mike

    in reply to: Border under Widget Titles? #988520

    Hi,
    Please try this code instead, in the General Styling > Quick CSS field:

    .sidebar .widget {
        border-bottom: 2px dashed #CCBDB8 !important; 
        width: 100%;
    }
    .sidebar .widget {
    margin-top: 20px !important;
    }

    Best regards,
    Mike

    in reply to: Visited Link color without Button #988517

    Hey Andreas_BS,
    Please try this code in the General Styling > Quick CSS field:

    p a:visited {color: red !important;}

    Best regards,
    Mike

    Hi,
    This bug has been fixed and will be in the next update.
    I have included a link to the file in the Private Content area so you don’t need to edit it yourself, but please save a copy of your current file as a backup to ensure this works for you.
    please put the file here:
    /enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js

    Best regards,
    Mike

    in reply to: Changing WooCommerce checkout Fields #988507

    Hi,
    Glad Dude was 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: Comment Area Customization #988503

    Hey viaggiareverde,
    I have worked on the nested comments before, and for that solution it was:

    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #top .commentlist .children ul,#top .commentlist ul,#top .commentlist .comment {
        margin-left: 0px !important; 
    }
    }

    If it’s not working in the Enfold Theme Options > General Styling > Quick CSS field, please try in the WordPress > Customize > Additional CSS.

    Perhaps it will work for you also, otherwise we will need a link to the page in question to investigate.

    For the notifying of comments, I believe you would like your users to subscribe to comments. I have found reference to this plugin: Subscribe To Comments Reloaded please see if this will work for you. I don’t have a built-in solution.

    Best regards,
    Mike

    in reply to: Search Loupe not visible #988498

    Hey BelIblis,
    Please check Enfold Theme Options > Main Menu > General > Append search icon to main menu
    to ensure it is checked.
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Dividing Line Between Blog Posts? #988496

    Hi,
    Yes, I have a couple of options, please remove the css so I can test. Also will this be for the whole site or one page?

    Best regards,
    Mike

    in reply to: Enfold Child Options are partially not working #988495

    Hi,
    I see that you had the “body” font size set to 13px in the Enfold Theme Options > Advanced Styling > Body
    The advanced styling typically overrides the general stylings, you also have many other fonts set there, perhaps that is the conflict.
    I tested by changing the “body” to “default” in the advanced stylings and cleared my browser cache. Please check.

    Best regards,
    Mike

    in reply to: Margin/Padding for Page and Post Content? #988491

    Hi,
    Oh, I see, thanks.
    There was 50px of padding there which this will remove:

    div.template-page.content.av-content-full.alpha.units {
    padding-bottom: 0px !important;
    }

    I tested on a few other pages and it seemed to work correctly.

    Best regards,
    Mike

    in reply to: Image size #988484

    Hi,
    Oh, I see now, thanks.
    Unfortunately we don’t have a way to order it, but you can replace it with a “custom html” widget and add the code in the link in the Private Content area to create the menu.
    I was unable to login to assist, but please try this.

    Best regards,
    Mike

    in reply to: Enfold Child Options are partially not working #988483

    Hi,
    Can you tell us which font sizes you would like and we will assist with enforcing them.

    Best regards,
    Mike

    in reply to: Image size #988478

    Hi,
    Sorry, I don’t think I understand correctly, they both seem to be the same order.
    Please explain what is wrong with your menu
    2018-07-22_142033

    Best regards,
    Mike

    in reply to: make burger menu icon stick on iphone #988477

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    .av-hamburger::before {
        content: url(https://png.icons8.com/flat_round/50/000000/list.png);
        display: block;
        padding-top: 15px;
    }
    .av-hamburger-inner {display:none!important;}

    Or try adding to WordPress > Customize > Additional CSS
    and adjust the padding-top to suit.
    2018-07-22_141516

    Best regards,
    Mike

    in reply to: BLOG …. Request for help #988473

    Hi,
    Do you mean that you would like year/month/day ?
    Please try going to WordPress > Settings > General > Date Format
    and choose “custom” and enter “Y/m/d”

    Best regards,
    Mike

    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: Error under Design – Themes #988465

    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: Enfold Child Options are partially not working #988464

    Hi,
    Thank you for the login, the h1’s that I looked at are styled by the css hero plugin, this is why your child theme styles are not taking effect. I suspect this is also the case with your other choices.
    There should be no problem continuing to use the plugin, but I would recommend either using it for all of your styling or not at all to reduce confusion and having the different stylesheets working against each other.

    Best regards,
    Mike

    in reply to: Media library shows empty boxes, no images #988462

    Hi,
    As I read your posts above I believe that you copied your old database an inserted into a new database via PHPmyAdmin, unfortunately this is the root of your issues. The database is serialized so this type of migration is going to cause errors.
    Here are two suggestions, each with their own drawbacks,
    1: I would use the All-in-One WP Migration to copy your Flashlight site and install it to your test site, then install the Enfold theme and activate it. You may still need to adjust each page and product to make it compatible with Enfold, but if the majority of your products and pages used the default wordpress editor it should be ok.
    2: You could delete all of your images and then go to each page & product and re upload them so they are attached to the correct article and be attached in the database correctly.
    3: Use the wordpress export option with attachments, from reading above I believe you have already tried this?
    Sorry, there doesn’t seem to be a really easy answer for this, but you could create another test wordpress install on a different sub-domain to try out the first choice without risking the work you have already put in to your current test site.

    Best regards,
    Mike

    in reply to: Enfold Child Options are partially not working #988451

    Hi,
    Sorry the login didn’t work for me, please check.

    Best regards,
    Mike

    in reply to: Image size #988448

    Hi,
    Please check your WordPress > Menu, you can re-order your menu items my dragging each one up or down.

    Best regards,
    Mike

    in reply to: Pictures not showing on tab #988447

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    #top.page-id-58705 #djtypes img {
        opacity: 1 !important; 
        -webkit-transform: scale(1) !important; 
        transform: scale(1) !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Help on getting sticky menu #988439

    Hey Aurora,
    Please go to Enfold Theme Options > Header > Header behavior > Sticky Header and check the option.
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

Viewing 30 posts - 26,161 through 26,190 (of 34,940 total)