Forum Replies Created

Viewing 30 posts - 19,351 through 19,380 (of 35,250 total)
  • Author
    Posts
  • in reply to: Demo issue #1157528

    Hi,
    Sorry for the late reply, I see that you have imported the default Enfold demo, this demo doesn’t include all of the images and content, please add your own images and content, or try the 2017 Enfold demo that does include the images and content.
    2019-11-16-132344
    You can use the “Single Portfolio 2/3 Slider” as a service page, I’m not sure I understand what you mean by “other portfolio options they want to set as a portfolio submenus”
    Please explain what you are having issues with when setting up the “Single Portfolio 2/3 Slider” as a service.

    Best regards,
    Mike

    in reply to: Verwendung von WordPress Premium Theme by Kriesi #1157525

    Hey Knoblich,
    Sorry for the late reply, please see our documentation here.
    Please keep in mind that we can not give legal advice, but you can read the EU cookie law here, and if you are still unsure please consult with a law expert in your country.

    Best regards,
    Mike

    in reply to: Theme Update Issues #1157524

    Hi,
    Sorry for the late reply, I was also blocked from the login page.
    Please try disabling your plugins and cache

    Best regards,
    Mike

    in reply to: Edit category pages #1157522

    Hi,
    Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.archive .sidebar_left .widget {
    	float:left !important;
    	text-align: left !important; 
    }
    #top.archive .sidebar_left .widget li {
        margin-left: 1em !important;
        padding: 3px 0 !important; 
    }
    #top.archive .sidebar_left .widget li a {
    	color: #2a6077 !important; 
    }

    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Define own breakingpoints #1157521

    Hi,
    Glad to hear that is working for you, as for your other element, the one with 1/5 columns is set to hide for all screens
    2019-11-16-122807
    and the one that is showing with 1/3 columns is set to show for all screens
    2019-11-16-122838
    please try adjusting to suit.

    Best regards,
    Mike

    in reply to: add a Facebook LIKE button to my website #1157519

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Accordion not working #1157518

    Hi,
    Thanks for the login, I checked your site and found the error is coming from your mailchimp widget, you are getting this error:
    magnificPopup is not a function typically this occurs when jQuery is loaded in the footer, but in your case it is loading in the head. I found removing this javascript link from your widget solves:
    downloads.mailchimp.com/js/signup-forms/popup/embed.js so there seems to be a conflict.
    I recommend that you use the Enfold mailchimp widget instead of using this code.

    Best regards,
    Mike

    Hi,
    Thank you, I tested the event countdown element on my localhost with the latest version and it works correctly.
    I took a look at your event countdown element and found an error in it, it didn’t have the event taxonomies option because your events didn’t have any categories so I added one as a test and I also disabled your plugins to see if there was a conflict, but the error continued, without any error messages in the console. I then downloaded your theme and event calendar plugin to my localhost believing there may be a corrupt file, but both worked correctly on my localhost.
    I looked at your functions.php for custom scripts but found none.

    So I was unable to discover what this cause was, I will ask the rest of the team to take a look, please leave the plugins disabled on your dev site so the team can check quickly without having to disable.

    Best regards,
    Mike

    in reply to: ADD MAPBOX INSTEAD OF GOOGLE MAP – MUCH NICER STYLE #1157465

    Hi,
    Thank you, I’m sure this will help out many people, I can confirm that this works.
    Here is what I added to a code block element:

    <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.js'></script>
    <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.css' rel='stylesheet' />
    <style>
    #map { position:absolute; top:0; bottom:0; width:100%; height: 100vh;}
    .avia_codeblock_section {height: 100vh;}
    </style>
    <div id='map'></div>
    
    <script>
    mapboxgl.accessToken = 'pk.eyJ1IjoiZ2RsbndzIiwiYSI6ImNrMW11Ym9jMjAzMjQzZ25xam1oMmhwcnoifQ.JSIPcNr0kAA5KYkzqoZW_g';
    var map = new mapboxgl.Map({
    container: 'map', // container id
    style: 'mapbox://styles/mapbox/dark-v10', //hosted style id
    center: [-77.38, 39], // starting position
    zoom: 3 // starting zoom
    });
    
    map.on('load', function() {
    // Add a single point to the map
    map.addSource('point', {
    "type": "geojson",
    "data": {
    "type": "FeatureCollection",
    "features": [{
    "type": "Feature",
    "geometry": {
    "type": "Point",
    "coordinates": [-77.38, 39]
    }
    }]
    }
    });
    
    map.addLayer({
    "id": "point",
    "type": "circle",
    "source": "point",
    "paint": {
    "circle-radius": 10,
    "circle-color": "#ffa500"
    }
    });
    });
    </script>

    and the result:
    2019-11-16-073257
    Shall we close this then?

    Best regards,
    Mike

    in reply to: How do I add an onclick event to a column link? #1157460

    Hi,
    Please include an admin login in the Private Content area so we can take a look.

    Best regards,
    Mike

    in reply to: Add Global Google tag in my Enfold #1157458

    Hi,
    Thank you for the cPanel and WordPress logins, I have taken a look at your site and I adjusted your child theme so that it work correctly, the issue was that your parent theme was not in the default directory. I then moved your gtag scripts to the child theme functions.php and corrected the curly quotes in the code, and cleared your Autoptimize cache, and tested to ensure your scripts loaded correctly, which they do now.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Logo size transparant header and scrolled #1157184

    Hi,
    Thank you for the login, I commented out your css and adjusted the function to this:

    function custom_logo_script(){
      ?>
      <script>
    (function($){
    $(window).load(function(){
    	$('#header.av_header_transparency #header_main .av-logo-container .inner-container').css({ 'height': '175%' });
    $(window).scroll(function() {
      var scroll = $(window).scrollTop();
      if (scroll >= 5) {
      	$('#header.av_header_transparency #header_main .av-logo-container .inner-container').css({ 'height': '100%' });
       $('.logo .subtext img.alternate').attr("src","https://lnsc.nl/lnsc2020/wp-content/uploads/Logo-LNSC2020-240.png");
     } else if (scroll <= 5){
     	$('#header.av_header_transparency #header_main .av-logo-container .inner-container').css({ 'height': '175%' });
       $('.logo .subtext img.alternate').attr("src","https://lnsc.nl/lnsc2020/wp-content/uploads/Logo-LNSC-2020-240.png");
       
     } else {
     	$('#header.av_header_transparency #header_main .av-logo-container .inner-container').css({ 'height': '175%' });
       $('.logo .subtext img.alternate').attr("src","https://lnsc.nl/lnsc2020/wp-content/uploads/Logo-LNSC-2020-240.png");
       
      }
     });
    });
    })(jQuery);
    
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_logo_script');

    result:
    via GIPHY

    please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Yes, because the avia_newsbox is pulling posts, which includes among other things the time and date, thus the filter:
    $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_newsbox' );
    but avia_newsbox has no baring on $time_format please see the entire function at \enfold\framework\php\class-framework-widgets.php this filter occur at line 961

    Earlier you wrote:

    Yes I accidentally left out that part about the conditional requirements. But let’s not worry about that–I was able to find a solution in terms of those conditions I specified.

    So this means this is solved?

    Best regards,
    Mike

    Hi,
    Sorry, that is not correct date_format is how Date and Time is Formated. Please read: Formatting Date and Time
    Here is an example:

    <span class='date-container minor-meta updated'><?php the_time(get_option('date_format')); ?></span>

    Try using Visual Studio Code, it is free, then open the theme folder with it, this will load every file, then you can search “find in files” for “date_format” or anything else, and you will see every instance of it.

    Best regards,
    Mike

    in reply to: Rotating image effect & menu effect #1156784

    Hi,
    To move the slider under the menu you need to set the page with a transparent header.
    please try this css for the logo, I didn’t see the other css I posted above, where you sure to clear your browser and cache plugin cache?
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home #logotwist .avia-image-container img.avia_image:hover {
        -webkit-transform: rotate(30deg) !important; 
        -moz-transform: rotate(30deg) !important; 
        -ms-transform: rotate(30deg) !important; 
        transform: rotate(30deg) !important; 
        -webkit-transition: all 0.4s ease-in-out !important; 
        -moz-transition: all 0.4s ease-in-out !important; 
        -o-transition: all 0.4s ease-in-out !important; 
        transition: all 0.4s ease-in-out !important; 
    }

    If this doesn’t work Please include an admin login in the Private Content area, perhaps you have a missing bracket in your css not allowing the css to work.

    Best regards,
    Mike

    in reply to: Edit category pages #1156779

    Hi,
    Thank you, please see the screenshot in the Private Content area of the two sidebars side by side.
    So what I see is:

    • link colors are not the same
    • text is not justified the sane
    • indention is not the same

    and you like the blog style, is this correct?

    Best regards,
    Mike

    in reply to: show html in front end #1156770

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Thank you, I checked again, the ftp access works, and the dev & live sites allow me into WordPress, but they are not admin access, please see the screenshot in Private Content area.
    I would prefer to investigate and test within the dev site, please check.

    Best regards,
    Mike

    in reply to: Gradients (buttons and text) #1156737

    Hi,
    Glad to help, please check one more time and then we will close this thread.

    Best regards,
    Mike

    in reply to: add a Facebook LIKE button to my website #1156735

    Hi,
    Ok I have enabled categories only for the mobile homepage view with this css:

    @media only screen and (min-width: 768px) { 
    	.blog-categories.minor-meta {
    		display: none !important; 
    	}
    }
    @media only screen and (max-width: 767px) { 
    	#top:not(.home) .blog-categories.minor-meta {
    		display: none !important; 
    	}
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Logo size transparant header and scrolled #1156538

    Hi,
    So it is working only when scrolling down, correct?
    I tried adjusting for the scroll back up, but I will have to research more and perhaps try something else.
    Try removing it and changing your css to this:

    #header.av_header_transparency .logo img.alternate {
        height: 175%;
        max-height: 350px;
        overflow: visible;
    }

    Otherwise please include an admin login in the Private Content area, so I can test when I find a new solution.

    Best regards,
    Mike

    in reply to: Gradients (buttons and text) #1156524

    Hi,
    OK, I also notice that the gradient is not very good with display:flex, so it seems display:inline is the best way.
    So lets try adding a div around the h2 and center that:

    <div class="cme"><h2 class="kop-gradient center">Sta-op stoel Arnhem</h2></div>

    this will be the css for the new class “cme”

    .cme {
        display: flex;
        justify-content: center;
    }

    So we are leaving the h2 in the way we know works in Safari, and wrapping it in a new div which we will then center with flex.
    If your not sure how to add a div, Please include an admin login in the Private Content area so I can demonstrate.

    Best regards,
    Mike

    in reply to: add a Facebook LIKE button to my website #1156512

    Hi,
    Thank you, that link does have a date and time that is a link, but Enfold does not.
    We can enable the categories on the homepage for mobile only, but the date and time will still not be a link.
    But I’m now not sure why we are talking about categories when we were talking about date and time, is this a new topic now?

    Sorry, I think I get confused each time we start a new topic in this thread, typically we like to start a new thread for each new topic.

    Best regards,
    Mike

    in reply to: Logo size transparant header and scrolled #1156504

    Hey jannnnnneke,
    Perhaps this will help, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_logo_script(){
      ?>
      <script>
    (function($){
    $(window).load(function(){
    $(window).scroll(function() {
      var scroll = $(window).scrollTop();
      if (scroll >= 1) {
       $('.logo .subtext img.alternate').hide();
      } else {
       $('.logo .subtext img.alternate').show();
      }
     });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_logo_script');

    Best regards,
    Mike

    in reply to: Update Enfold Theme #1156480

    Hey Wouterkloosterman,
    version 4.2 used the API but Theme Forest now uses the Token, you will need to update via ftp.
    The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Gradients (buttons and text) #1156476

    Hi,
    Try removing the margin rule, and see if this works with Safari for centering and the gradient:

    h2.kop-gradient.center, h1.kop-gradient.center {
        display: flex !important; 
        justify-content: center !important; 
    }

    Best regards,
    Mike

    Hi,
    You could use css display:none or you could use this function instead:

    function post_meta_shortcode(){
      ob_start();
      echo "<span class='post-meta-infos' style='margin-top: -25px;'>";
      $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
      echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
      echo '</span>';
      return ob_get_clean();
    }
    add_shortcode( 'sc_post_meta', 'post_meta_shortcode' );

    Best regards,
    Mike

    in reply to: add a Facebook LIKE button to my website #1156473

    Hi,
    I’m not sure that I understand correctly, the page you linked to doesn’t show date & time for the posts, it shows one date & time at the top of the page that is not a link, and it only shows the current date and time.
    If we re-enable your date and time it will not be a link.

    Best regards,
    Mike

    Hi,
    I tested this code on my site before posting it to ensure it still worked, and I looked at your functions.php and tested the shortcode on a post of yours and it worked.
    Please check again.

    Best regards,
    Mike

Viewing 30 posts - 19,351 through 19,380 (of 35,250 total)