Forum Replies Created

Viewing 30 posts - 47,611 through 47,640 (of 65,998 total)
  • Author
    Posts
  • in reply to: Centered Large Logo not working on mobile #449157

    Hi!

    What is the mobile device that you’re using? Please remove browser cache then test it again.

    Regards,
    Ismael

    in reply to: Disable portfolio functionality #449155

    Hi!

    Add this in the functions.php file:

    remove_action('init', 'portfolio_register');
    

    Regards,
    Ismael

    in reply to: Stopping Related Videos showing on Youtube Videos #449154

    Hey!

    Let us know if the auto update is still not working. If you can provide us with an API key and a username, we would like to test it in the future.

    Updating the theme via FTP is pretty easy. You can actually do it yourself. It’s like dragging a file from your desktop then dropping it on a folder. Your “tech guy” should not be charging you so much for simply dropping or uploading files inside a folder. https://wiki.filezilla-project.org/Using

    Cheers!
    Ismael

    in reply to: Where is "Give us a call now: 555-485 388" text? #449153

    Hey unicaweb!

    Thank you for using Enfold.

    Go to Enfold > Header > Extra Elements panel. Maybe, it is located in the phone info field.

    Best regards,
    Ismael

    Hey!

    Remove this code:

    .avia-testimonial-content p {
      font-size:90% !important;
    }

    Use this instead:

    .avia-testimonial-content {
      font-size: 90%;
    }

    Best regards,
    Ismael

    in reply to: Avia builder, working wrong, unstable with bugs #449151

    Hey!

    Alright. Check the “Workshops” special heading element for example. Look at the strong tag. It’s not closed properly:

    <strong>Workshops<strong>
    

    It has to be:

    <strong>Workshops</strong>
    

    Same with the “Simposios” special heading element. It breaks the structure of the layout builder. After you fixed it, update the page then test if the builder is still freezing.

    Regards,
    Ismael

    in reply to: How to show different logo on mobile and blog page? #448988

    Hey!

    We don’t have enough permission to edit the functions.php file. You don’t need to wrap the code inside a script tag. Please replace this code:

    function add_custom_blog_logo(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.blog .logo img').attr('src','http://hero.travel/wp-content/uploads/HeroHomeLogo.png');
    jQuery('.single-post .logo img').attr('src','http://hero.travel/wp-content/uploads/HeroHomeLogo.png');
    
    });
    </script>
    
    <script>
    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(is_home() )
        {
        $logo = "http://hero.travel/wp-content/uploads/HeroHomeLogoWhite.png";
        }
        return $logo;
    }
    </script>
    
    <?php
    }
    add_action('wp_footer', 'add_custom_blog_logo');
    

    With this:

    function add_custom_blog_logo(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.blog .logo img').attr('src','http://hero.travel/wp-content/uploads/HeroHomeLogo.png');
    jQuery('.single-post .logo img').attr('src','http://hero.travel/wp-content/uploads/HeroHomeLogo.png');
    
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_blog_logo');
    
    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo)
    {
        if(is_page(2))
        {
        $logo = "http://hero.travel/wp-content/uploads/HeroHomeLogoWhite.png";
        }
        return $logo;
    }

    Best regards,
    Ismael

    Hi!

    This is the page that you set as the home page, right? http://www.gravitygroms.com/gravity-groms-crested-butte-camp

    If you use that it will redirect to the home page, that’s why this url will not work:

    http://www.gravitygroms.com/gravity-groms-crested-butte-camp#camps
    

    For the photo/videos pages, you need to use the actual url plus the anchor name:

    http://www.gravitygroms.com/gravity-groms-news-and-photos#videos
    

    Regarding the top margin, that should not be happening by default. Did you add any modifications to the theme? Did you modify the header height?

    Cheers!
    Ismael

    in reply to: inline-link #448971

    Hey!

    Just clone the column like what we did here. Look for the very last item then change the url of the images and the target container: http://www.xenophonstrategies.com/main/wp-admin/post.php?post=3547&action=edit

    This is the link:

    <a class="lbp-inline-link-16
    

    And the target:

    <div id="lbp-inline-href-16" style="padding: 20px; background: #fff;">
    

    Notice the “lbp-inline-link-16”? Change that to something else.

    Best regards,
    Ismael

    in reply to: Layer Slide Full Page #448966

    Hi!

    Thank you for using Enfold.

    That is not a layer slider. It is the full screen slider in the advance layout builder.

    Regards,
    Ismael

    in reply to: slider 3d #448963

    Hey!

    Did you edit all the slides? You need to change the transition settings for all slides.

    Best regards,
    Ismael

    in reply to: Centre footer widgets on mobile #448962

    Hey!

    Can you please provide a screenshot of the issue? It looks fine on landscape mode:

    Use this to center the text widgets:

    #footer .widget {
      text-align: center;
    }
    
    #footer .widget .textwidget {
      display: inline-block;
    }

    Cheers!
    Ismael

    in reply to: Always Show Add To Cart on Product Page Solution! #448957

    Hey Austin!

    Thank you for using Enfold and the tip. You can actually set a variation as a default. This screenshot is from an old version of the plugin but the location of the option hasn’t changed:

    http://cld.wthms.co/7LIv
    http://cld.wthms.co/YQFO

    Best regards,
    Ismael

    in reply to: Avia builder, working wrong, unstable with bugs #448956

    Hi!

    Is this happening if the plugins are deactivated? I created a test page and the advance layout builder is working. http://www.fineco.ferozo.com/fnueva/?page_id=8419

    Regarding, the content issue, maybe you added html tags in the page then some of it aren’t closed properly? There’s a lot of inquiries about the “content loss” but as it turned out, some of the custom html tags added inside the page are broken.

    Cheers!
    Ismael

    in reply to: Color section width #448953

    Hi!

    Thank you for using Enfold.

    Replace the code with this:

    #customID {
      max-width: 50% !important;
      position: relative;
      left: 50%;
      transform: translate(-50%, 0);
     -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
    }
    

    Regards,
    Ismael

    in reply to: Header resised in wpml #448946

    Hi pannosk!

    Thank you for using Enfold.

    You need to add the css code again in the EN theme options. You need to configure both language.

    Regards,
    Ismael

    in reply to: Undorderd bullit list causes problems with icon list #448936

    Hey!

    Change it back to the previous code then add this code below:

    .avia-icon-list li:before {
    content: "";
    }

    Best regards,
    Ismael

    in reply to: Masonry Gallery not working #448934

    Hi!

    The masonry section shows fine on first load. Try to add this at the very end of the functions.php file:

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$(this).trigger('resize');
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    Hey!

    Use this for the big magazine item:

    .av-magazine-hero .av-magazine-thumbnail a:before {
      content: '';
      background: #000 url(https://69.36.167.36/bnm-2015/wp-content/uploads/2015/05/post-default-thumb.jpg) no-repeat center center;
      width: 49px;
      height: 49px;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      display: block;
    }

    Use a larger thumbnail image and adjust the width and height.

    Regards,
    Ismael

    in reply to: Plugin Upcoming Events displayed horizontally #448929

    Hi!

    Add this:

    a.av-upcoming-event-entry.av-upcoming-event-without-image {
      width: 20.5%;
      margin-left: 6%;
    }
    
    a.av-upcoming-event-entry.av-upcoming-event-without-image:first-child {
      margin-left: 0;
    }

    Cheers!
    Ismael

    in reply to: Mixed responsiveness on page #448926

    Hey happinessplunge!

    Thank you for using Enfold.

    Some of the color sections are outside the wrap_all container. Please check all sections in the page, make sure that there are no unclosed tags (divs, span, strong etc).

    Regards,
    Ismael

    in reply to: Centered Large Logo not working on mobile #448913

    Hey!

    Please replace the code with this:

    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo) {
    	if(wp_is_mobile()) {
    		$logo = "http://mauston.org/wp-content/uploads/2015/05/mauston-logo-mobile.jpg";
    	}
    	return $logo;
    }

    Cheers!
    Ismael

    in reply to: Shop Page and Product Page Layout and Design. #448889

    Hey!

    Thank you for using Enfold.

    We only provide basic code support and troubleshoots theme issue but we can help you with the site’s overall design modification. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization

    If you encounter any issue with the redesign or if you want to change a specific element and you’re not sure how, let us know. You can start the redesign on Enfold > General Styling panel. Adjust font colors, background, fonts etc.

    Best regards,
    Ismael

    in reply to: Youtube – Controlling length of video clip played #448886

    Hey!

    Use this in a code or text block:

    <div class="avia-video avia-video-16-9  ">
    <div class="avia-iframe-wrap"><iframe src="https://www.youtube.com/embed/zImLDYRLoTI?start=10&end=60&feature=oembed" width="1500" height="844" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div>
    </div>

    Regards,
    Ismael

    in reply to: Google Maps widget error #448881

    Hi!

    Hmm.. We are actually not sure but glad it is fixed. If you encounter any issues in the future, let us know. :)

    Best regards,
    Ismael

    in reply to: social icons – change circle to square on hover #448879

    Hey derek!

    Thank you for using Enfold.

    Add this in the Quick CSS field:

    #header_main .social_bookmarks li a {
      border-radius: 0;
    }

    Cheers!
    Ismael

    in reply to: Changing colour of "- Website Name" in testimonials #448876

    Hi!

    You can use this to change the hyphen color:

    .avia-testimonial-meta-mini {
      color: blue;
    }

    Best regards,
    Ismael

    Hi!

    You can use this:

    #header_main {
      border-color: red !important;
    }

    Best regards,
    Ismael

    Hey!

    Glad the products are fixed. Widgets should stay intact when you deactivate the plugins unless the plugin includes a custom widget.

    Regards,
    Ismael

    in reply to: Layered navigation #448271

    Hi!

    1.) I’m sorry but I’m not sure what you’re trying to do here. Do you want to remove the “Nogen” text?

    2.) Add this in the functions.php file to remove the () characters:

    add_action('wp_footer', 'ava_custom_script', 10);
    function ava_custom_script(){
    ?>
    <script>
    (function($){	
    	$('.widget span.count').each(function() {
    		$(this).text($(this).text().replace(/[()]/g,''));	
    	});
    }(jQuery));
    </script>
    <?php
    }

    Best regards,
    Ismael

Viewing 30 posts - 47,611 through 47,640 (of 65,998 total)