Forum Replies Created

Viewing 30 posts - 24,211 through 24,240 (of 25,536 total)
  • Author
    Posts
  • in reply to: Google 360 view is not working on mobile #720416

    Hey AlfredoS,

    Sorry for the late response, however I think the question is already out of our scope since we don’t have control over the content inside the iframe. Try to consult with google’s support.

    Best regards,
    Nikko

    in reply to: Logo size transparent and scrolled #720409

    Hi,

    Try adding this code in Quick CSS:

    #top .av_header_transparency.av_alternate_logo_active .logo a > img {
        display: none;
    }

    Place it above:

    @media only screen and (min-width:768px) {

    Let us know if it helps.

    Best regards,
    Nikko

    in reply to: Easy Full Width Slider – How to run script on button click #720406

    Hey ProSEO,

    Try setting the link manually then assign # as link. Then on functions.php add this code:

    function add_custom_script(){
    ?>
    <script type="text/javascript">
    (function($){
    	function myscript() {
    	   $("#top.page-id-6 #full_slider_1 .slide-2 .avia-slideshow-button.avia-color-theme-color").click( function() {
                 alert('button clicked');
               }
            );
    	}
    
    	myscript();
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'add_custom_script');

    Just replace this part alert(‘button clicked’); with the function calling. Hope this helps.

    Best regards,
    Nikko

    in reply to: Add class to menu link #720403

    Hey!

    I have added the code I have given above but I noticed there is already a function of the same name, I modified the code in your functions.php (code below) however when I checked the page source it seems that the cache prevents the new code to show up. I tried disabling the cache but couldn’t get it to work, can you try to clear and disable cache (deactivate also), then delete the cache files via ftp or cpanel.

    function add_popup_script(){
    ?>
    <script type="text/javascript">
    (function($){
    	function myfunction() {
    		$(".popup-link-wrap a").addClass("your-class-here");
    	}
    
    	myfunction();
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'add_popup_script');

    Best regards,
    Nikko

    in reply to: Contact Form is NOT sending Emails #720072

    Hi!

    Yes, the issue is very strange because the issue is only on the homepage, what I suggest as a workaround is to use the duplicate as the homepage instead since it has everything the homepage has without the contact form issue. I have tested the duplicate and the contact form works fine and also shows the confirmation message on the page.

    Cheers!
    Nikko

    in reply to: Featured Image Not Displaying on Mobile #719974

    Hi!

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Featured Image Size & Display #719972

    Hey adamp81,

    No worries, I’ll be closing this thread :)

    Best regards,
    Nikko

    in reply to: Database issue after update #719969

    Hi S,

    Glad we could help :)
    We really appreciate it if you rate our theme on themeforest. Thank you for using Enfold :)

    Best regards,
    Nikko

    in reply to: Mobile menu #719968

    Hi,

    At the bottom of your functions.php, you should see this code:

    // add_theme_support('avia_template_builder_custom_css');

    You just need to remove the // and the Custom Css Classes should be enabled. Let us know if doing so still causes 500 error.

    Best regards,
    Nikko

    in reply to: Add class "no follow" to a link #719965

    Hi,

    Please feel free to request – or vote if already requested – such feature on Enfold feature request form.

    Best regards,
    Nikko

    in reply to: Problem adding fontello icons on Enfold 3.7 #719962

    Hi,

    Glad that it’s fixed :)

    Best regards,
    Nikko

    in reply to: Border around current menu item #719961

    Hi,

    That should work, but since you said it doesn’t please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Hide or mark checkbox value FALSE in form email #719959

    Hey opvab,

    We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/

    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)

    Best regards,
    Nikko

    in reply to: Border around current menu item #719956

    Hey Angelo,

    Try to add this code in Quick CSS (located in Enfold > General Styling):

    .current-menu-item > a span.avia-menu-text {
        border: 1px solid green;
        padding: 4px 8px;
    }

    Just adjust the values as you see fit. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Custom Class Not Working on Headers #719955

    Hi,

    I checked it and it’s not ignored though I see a different code taking effect, which is this:

    .page-id-916 .pyb-text-block h2 {
        font-family: "abolition"!important;
        font-size: 36px!important;
        text-transform: none!important;
        letter-spacing: 1px!important;
    }

    You can add margin-bottom: 0; after letter-spacing, to reduce the space after it. Also you have define blue color for strong, this is the code and it works well:

    .pyb-text-block strong {
        color: #118acb!important;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Header.php attempting to load old images #719954

    Hey Russell,

    In the WordPress Dashboard, go to Settings > General and make sure you use https for both WordPress Address (URL) and Site Address (URL). :)

    Best regards,
    Nikko

    in reply to: Adding Custom Fonts #719953

    Hey ktsimeon,

    Please refer to this thread: https://kriesi.at/support/topic/new-custom-font/

    Best regards,
    Nikko

    in reply to: all toggles (accordeon) closed #719951

    Hey rixi,

    No changes is needed in CSS, just edit toggle then make sure Initial Open is set to 0. Hope this helps. :)

    Best regards,
    Nikko

    Hi,

    Try going to Enfold > Header > find Header Title and Breadcrumbs and set it to Display only title. Hope this helps.

    Best regards,
    Nikko

    in reply to: Shrinking logo quality in IE11 very bad #719945

    Hey envato1901,

    I’m not sure if this works but try adding this code in Quick CSS(located in Enfold > General Styling):

    .logo img {
           -ms-interpolation-mode: bicubic;
    }

    Hope this helps.

    Best regards,
    Nikko

    Hey ind-image,

    Tried to check on your site and it looks good on my end. Can you ask your client if he can give you a screenshot on how it looks on his end so we can atleast see in his perspective.

    Best regards,
    Nikko

    in reply to: Header Logo No Padding #719938

    Hey mattnystrom,

    Thanks for using Enfold :) Try adding this code in Quick CSS (located in Enfold > General Styling):

    .html_header_sidebar .logo {
        padding: 0 !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: How to hide fullwith sub menu in the desktop and tablet view #719936

    Hi,

    If you want to hide it on both desktop and tablet, try to replace this part of Yigit’s code

    @media only screen and (min-width: 1025px) and (max-width: 767px) {

    to

    @media only screen and (min-width: 768px) {

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Search Does not Work #719935

    Hi,

    It should show about 10 search results per page, but if you want to reduce it to 4, try adding this code at the bottom of functions.php:

    function myprefix_search_posts_per_page($query) {
        if ( $query->is_search ) {
            $query->set( 'posts_per_page', '4' );
        }
        return $query;
    }
    add_filter( 'pre_get_posts','myprefix_search_posts_per_page' );

    Let us know if it works :)

    Best regards,
    Nikko

    in reply to: Share Buttons don't show up in Google Chrome #719931

    Hey martinafuchs,

    Can you post a screenshot of how it looks on your end? (the one that shows the issue).

    Best regards,
    Nikko

    in reply to: Having an image in my header #719926

    Hi,

    I apologize for that mistake, I forgot to add # (I have fixed the code above). I removed from your Quick CSS, however it is still missing this so the header image should show up, kindly add it to Quick CSS:

    #top .header_bg {
        background: transparent !important;
    }

    I tried to add the code and removed it shortly after since I don’t think it looks good with logo and the background.

    Best regards,
    Nikko

    • This reply was modified 8 years, 1 month ago by Nikko.
    in reply to: How To HIGHLIGHT TEXT In Blog Posts #719922

    Hey!

    Thanks for elaborating it, you need to write a bit of html in a text block (make sure you use the Text not the Visual), then add something like this:
    <h4 class="customized-heading">The Heading</h4>
    Just replace The Heading with any text/content. Then on Quick CSS (located in Enfold > Styling) add this code:

    .customized-heading {
        background: black !important;
        color: white !important;
        display: block;
        font-size: 24px;
        padding: 5px 20px;
        box-sizing: border-box;
    }

    Just change the background, color, font-size and paddings as you see fit. Hope this helps :)

    Regards,
    Nikko

    in reply to: Yoast SEO not working #719920

    Hey!

    I checked the backend and it seems to be fine, it took a few seconds for the spinner then the content appears. Is it fixed already? can you try to clear browser cache and check again.

    Cheers!
    Nikko

    in reply to: How to disable slide option on mobile? #719909

    Hi,

    I tested it on iphone using safari and chrome, and I don’t experience the same issue. I tried to slide left to right or right to left on the About page.

    Best regards,
    Nikko

    in reply to: Database issue after update #719907

    Hi,

    I have checked your site and some files from the Enfold theme have been lost, and it should be fixed now. Let us know if everything is good . :)

    Best regards,
    Nikko

Viewing 30 posts - 24,211 through 24,240 (of 25,536 total)