Viewing 30 results - 91,711 through 91,740 (of 142,715 total)
  • Author
    Search Results
  • #673435

    Hi Andy,

    My apologies. The Enfold update alert didn’t show until now and it has been updated along with 4.6 WordPress update. Unfortunately, the issue is still there and only shows up at the mobile breakpoint. The skinner the screen the more off the anchor destination. Is there something in this js code that I can change that will fix?

    // ——————————————————————————————-
    // Smooth scrooling when clicking on anchor links
    // todo: maybe use https://github.com/ryanburnette/scrollToBySpeed/blob/master/src/scrolltobyspeed.jquery.js in the future
    // ——————————————————————————————-

    (function($)
    {
    $.fn.avia_smoothscroll = function(apply_to_container)
    {
    if(!this.length) return;

    var the_win = $(window),
    $header = $(‘#header’),
    $main = $(‘.html_header_top.html_header_sticky #main’).not(‘.page-template-template-blank-php #main’),
    $meta = $(‘.html_header_top.html_header_unstick_top_disabled #header_meta’),
    $alt = $(‘.html_header_top:not(.html_top_nav_header) #header_main_alternate’),
    shrink = $(‘.html_header_top.html_header_shrinking’).length,
    frame = $(‘.av-frame-top’),
    fixedMainPadding = 0,
    isMobile = $.avia_utilities.isMobile,
    sticky_sub = $(‘.sticky_placeholder:first’),
    calc_main_padding= function()
    {
    if($header.css(‘position’) == “fixed”)
    {
    var tempPadding = parseInt($main.data(‘scroll-offset’),10) || 0,
    non_shrinking = parseInt($meta.outerHeight(),10) || 0,
    non_shrinking2 = parseInt($alt.outerHeight(),10) || 0;

    if(tempPadding > 0 && shrink)
    {
    tempPadding = (tempPadding / 2 ) + non_shrinking + non_shrinking2;
    }
    else
    {
    tempPadding = tempPadding + non_shrinking + non_shrinking2;
    }

    tempPadding += parseInt($(‘html’).css(‘margin-top’),10);
    fixedMainPadding = tempPadding;
    }
    else
    {
    fixedMainPadding = parseInt($(‘html’).css(‘margin-top’),10);
    }

    if(frame.length){
    fixedMainPadding += frame.height();
    }

    };

    if(isMobile) shrink = false;

    calc_main_padding();
    the_win.on(“debouncedresize av-height-change”, calc_main_padding);

    var hash = window.location.hash.replace(/\//g, “”);

    //if a scroll event occurs at pageload and an anchor is set and a coresponding element exists apply the offset to the event
    if (fixedMainPadding > 0 && hash && apply_to_container == ‘body’ && hash.charAt(1) != “!” && hash.indexOf(“=”) === -1)
    {
    var scroll_to_el = $(hash), modifier = 0;

    if(scroll_to_el.length)
    {
    the_win.on(‘scroll.avia_first_scroll’, function()
    {
    setTimeout(function(){ //small delay so other scripts can perform necessary resizing
    if(sticky_sub.length && scroll_to_el.offset().top > sticky_sub.offset().top) { modifier = sticky_sub.outerHeight() – 3; }
    the_win.off(‘scroll.avia_first_scroll’).scrollTop( scroll_to_el.offset().top – fixedMainPadding – modifier);
    },10);
    });
    }
    }

    return this.each(function()
    {
    $(this).click(function(e) {

    var newHash = this.hash.replace(/\//g, “”),
    clicked = $(this),
    data = clicked.data();

    if(newHash != ” && newHash != ‘#’ && newHash != ‘#prev’ && newHash != ‘#next’ && !clicked.is(‘.comment-reply-link, #cancel-comment-reply-link, .no-scroll’))
    {
    var container = “”, originHash = “”;

    if(“#next-section” == newHash)
    {
    originHash = newHash;
    container = clicked.parents(‘.container_wrap:eq(0)’).nextAll(‘.container_wrap:eq(0)’);
    newHash = ‘#’ + container.attr(‘id’) ;
    }
    else
    {
    container = $(this.hash.replace(/\//g, “”));
    }

    if(container.length)
    {
    var cur_offset = the_win.scrollTop(),
    container_offset = container.offset().top,
    target = container_offset – fixedMainPadding,
    hash = window.location.hash,
    hash = hash.replace(/\//g, “”),
    oldLocation=window.location.href.replace(hash, ”),
    newLocation=this,
    duration= data.duration || 1200,
    easing= data.easing || ‘easeInOutQuint’;

    if(sticky_sub.length && container_offset > sticky_sub.offset().top) { target -= sticky_sub.outerHeight() – 3;}

    // make sure it’s the same location
    if(oldLocation+newHash==newLocation || originHash)
    {
    if(cur_offset != target) // if current pos and target are the same dont scroll
    {
    if(!(cur_offset == 0 && target <= 0 )) // if we are at the top dont try to scroll to top or above
    {
    // animate to target and set the hash to the window.location after the animation
    $(‘html:not(:animated),body:not(:animated)’).animate({ scrollTop: target }, duration, easing, function() {

    // add new hash to the browser location
    //window.location.href=newLocation;
    if(window.history.replaceState)
    window.history.replaceState(“”, “”, newHash);
    });
    }
    }
    // cancel default click action
    e.preventDefault();
    }
    }
    }
    });
    });
    };
    })(jQuery);

    #673433

    You’ll need to upgrade Enfold to the latest version and get a Google Map API key from Google. You will find the link in the Enfold Theme Settings once you upgrade to the latest version.

    This topic post might help: https://kriesi.at/support/topic/google-maps-java-script-issue/

    H

    #673432
    onesource_marketing
    Participant

    Need some help! Trying to create careers & job board section on our website: http://www.onesourcebackground.com
    We are currently using Job Manager plugin. It has limited functionality so I am seeing if the WP Job Manager plugin would be a better fit for us. It’s using the theme’s single.php file to put the single job listing. How do I edit this file? I am not a developer. The single job listing is showing the title “Blog” on the top of this page. UGH! See screenshot: http://goo.gl/54VtBT

    I’ve poured over the plugin developer’s documentation but I’m scared to death to try any of their recommendations https://wpjobmanager.com/document/single-job-listings. And since I don’t code, I wouldn’t know what to remove from this file. I should also point out that I have a child theme. So that gets confusing as to what files I move where and/or edit.

    From my ftp site, below is my single.php file. What do I remove to override the title “Blog”. Is there an easier way to modify these templates? It would be awesome to be able to assign it to a post or page I’ve already created in the Admin dashboard. I hate messing with the native files.

    <?php
    	if ( !defined('ABSPATH') ){ die(); }
    	
    	global $avia_config;
    
    	/*
    	 * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    	 */
    	 get_header();
    
    	$title  = __('Blog - Latest News', 'avia_framework'); //default blog title
    	$t_link = home_url('/');
    	$t_sub = "";
    
    	if(avia_get_option('frontpage') && $new = avia_get_option('blogpage'))
    	{
    		$title 	= get_the_title($new); //if the blog is attached to a page use this title
    		$t_link = get_permalink($new);
    		$t_sub =  avia_post_meta($new, 'subtitle');
    	}
    
    	if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
    	
    	do_action( 'ava_after_main_title' );
    
    ?>
    
    		<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    
    			<div class='container template-blog template-single-blog '>
    
    				<main class='content units <?php avia_layout_class( 'content' ); ?> <?php echo avia_blog_class_string(); ?>' <?php avia_markup_helper(array('context' => 'content','post_type'=>'post'));?>>
    
                        <?php
                        /* Run the loop to output the posts.
                        * If you want to overload this in a child theme then include a file
                        * called loop-index.php and that will be used instead.
                        *
                        */
    
                            get_template_part( 'includes/loop', 'index' );
    						
                            //show related posts based on tags if there are any
                            get_template_part( 'includes/related-posts');
    
                            //wordpress function that loads the comments template "comments.php"
                            comments_template();
    
                        ?>
    
    				<!--end content-->
    				</main>
    
    				<?php
    				$avia_config['currently_viewing'] = "blog";
    				//get the sidebar
    				get_sidebar();
    
    				?>
    
    			</div><!--end container-->
    
    		</div><!-- close default .container_wrap element -->
    
    <?php get_footer(); ?>
    #673410

    mil gracias jossue, aún no he podido ni probarlo :) pasando diez años de contenido.
    Te comento me ha desaparecido el menu de la web móvil, el subir arriba y en las paginas interiores la búsqueda en vez de la lupa me sale en una página nueva subí dos pluggins y sucedio esto uno era viene en este post https://kriesi.at/support/topic/mobile-menu-54/#post-672937 se me desconfiguró la página incial que la tenia con una galeria y como verás el index las fotos no se ven de los intervinientes en la web.
    No sé si dais soporte a este nivel sino es así perdonar por la extensión. Mil gracias!!!

    #673406
    lzevon
    Participant

    Have you changed how you have the CSS classes targeting the titles? Below is the original (as of 8/2)

    #top #wrap_all .header_color h1,  #top #wrap_all .main_color h1,  #top #wrap_all .alternate_color h1,  #top #wrap_all .footer_color h1,  #top #wrap_all .socket_color h1 {
      color: #4d7b15;
      font-size: 30px;
      font-weight: normal;
    }

    Then as of 8/9:

    #top #wrap_all .all_colors h1 {
      color: #4d7b15;
      font-size: 30px;
      font-weight: normal;
    }

    So I’m thinking that the new CSS no longer targets the areas you used to and is defaulting to black? The biggest issue is with the main content only being 10px wide! The only way I’ve figured out how to get the content to display is to do the following:

    .html_boxed #main {
      position: static;
      overflow: hidden; <-- disable
    }

    This is on the element:
    body -> <div id="wrap_all"> -> <div id="main" data-scroll-offset="0">

    Now this didn’t change between versions, so not sure why this makes a difference now? The issues occur in Firefox and Edge, but not Chrome.

    #673404

    Thank you both!
    I’m trying to find a way that the information will be displayed right aside the hamburger symbol, and not above it.
    In the options you suggested, the text is displayed at the top of the page all the time – and I want it just to be displayed when the menu is open.

    Is there such an option?

    #673401
    rogersparks
    Participant

    The Google Map component of Enfold stopped working after the upgrade to WordPress 4.6.
    No other changes were made, all plug-ins are updated.

    #673397

    Topic: Add To Cart Button

    in forum Enfold
    molexmedia
    Participant

    Hey Guys!

    Just purchased my 5th license! Im having trouble centering the add to cart button on my product pages. I’ve tried a million ways of doing it and nothing has worked. I even found a thread in your forum (https://kriesi.at/support/topic/center-add-to-cart-woocommerce-shortcode/) but the code didn’t do it for me.

    How can I center the add to cart button?

    The url is in the private content.

    Thanks!

    #673392
    cdsymm
    Participant

    Hi

    I did a couple of plug in updates, one was jQuery Updater which solved a problem I was having with my add to cart button not showing up on my variable product pages. Problem is that now my product categories which are set to appear when you hover over the product button/area of my main menu, suddenly do not appear.

    Please can you assist.

    Chris

    no need to answer. problem solved.
    found the new code from here: https://kriesi.at/support/topic/rtl-footer-on-mobile/

    #673382

    Hi pimhs!

    Please add the following custom CSS

    #top .widget_nav_menu li { font-size: 22px !important; }
    

    and let me know if that works out for you.

    Thanks a lot

    Regards,
    Basilis

    GuyMVI
    Participant

    Hi

    in this page i have 2 places that shows branches: (the link is in private)

    the first place is inside the content was not showing correct RTL order when displaying it in mobile.
    i used this code to fix it and it now ok. it is displaying the correct order.
    this is the code i used: https://kriesi.at/support/topic/incorrect-section-order-in-rtl-mobile-display-2/#post-668811 (the big section with code)

    but it did not solved the problem in the footer section. in the footer area the order in mobile not showing correct order for RTL
    what should i do to fix the order to be RTL in the footer?

    #673377

    Topic: Tabs In Mobile

    in forum Enfold
    hdpcr
    Participant

    Hi

    Is there a way to dispaly tabs in 800×480 or 768 × 1024 large table portrait or landscape as they are diaplayed in mobile. I mean instead of tabs are displayed one beneath the other in mobiles but in large tablet they are shown one next to other as in desktop. So if its possible to display tabs that way

    Thank you

    #673375

    Topic: Menu Widget Area

    in forum Enfold
    gzelasco
    Participant

    Is there any way to config widget to show in the rigth menu area? I mean at the top right menu
    Thanks !

    #673371
    brettb112
    Participant

    I’ve tried looking up other threads to avoid creating multiple topics.
    However, I still can not figure it out.

    When I add things like grid rows, color selection, and image to 1/2 cell and other element containers, my pictures are usually cut off.
    The grid row reaches the end of the screen but it us usually cut off (you can see an example on my websites home page.

    And when I add images to 1/2 cells it will not reach the end of the page.

    I want to achieve an “About Us” ( http://kriesi.at/themes/enfold-shop/about/ ) with all the pictures and text beside it.
    Thanks Guys!

    #673367

    Yes, the logo looks good now – because i made some changes to the helper-main-menu.php in the includes folder and did not use yigit’s code.

    I tried to load the kontakt-page with 3 browsers and the google-maps widget doesn’t work with none.
    I think what you saw was a jpeg of google-maps which was placed inside a section -> now this image-section is deleted. There should be a google-maps widget/section at the top of the page – but there is only blank white space ( above the contact form and details ). Hope you’ll get what i mean.

    • This reply was modified 9 years, 6 months ago by suppenhuhn.
    #673352
    nightowlmarketing
    Participant

    Hello.

    My photos are showing correctly on the desktop version, but when someone looks on mobile – the pictures are now sideways.

    yardarmrestaurantcorpuschristi.com

    Please assist.

    quadrocreative
    Participant

    Hi Support,

    I am moving my clients website over to your Theme from a Theme called Reno.

    I used the following code to have a different background image on certain pages… Can you please advise how I can do this with your Theme?

    Best Regards,

    Richard

    /*Adds a background image*/

    .page-id-6031{

    background: url(img/background2.jpg) center top no-repeat;

    background-attachment: fixed;

    }

    #673344
    Janus
    Participant

    Hi,

    I have a few questions concerning my website

    1/ When I pass my mouse ouver the three top pictures, the text below the pictures is moving a little bit lower. How to fix that ?

    2/ Below “LES DERNIERS TIPS” I have two layout elements 1/3 & 2/3. I would like to reduce the space between these two columns.

    Regards,
    Legi.

    • This topic was modified 9 years, 5 months ago by Janus.
    #673340
    Wolf
    Participant

    Hello Team,
    I am getting a javascript error on my google maps widget.
    the error : https://developers.google.com/maps/documentation/javascript/error-messages#invalid-key-map-error

    -edit-
    new api key not working.

    any ideas?

    • This topic was modified 9 years, 6 months ago by Wolf.
    #673324
    gelico_07
    Participant

    Hello.
    I’m tryng to change the “site url” only (not the WP installation directory) from http://lnx.mydomain.com/wp to http://www.mydomain.com.,
    leaving the installation directory in http://lnx.mydomain.com/wp
    I’m following wp guide at this link https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory.
    at the and of the process everything seems ok but i’ve got this strange problem: i lost social icon in the menu and footer.
    I’ve used theVelvet Blues Update URLs plugin to restore the broken internal links adn it was ok, (i just did not check the option to update the GUIDs, should I?) but i’ve still the problem with social icon as with the back to top page arrow and the hover arrow to open portfolio element in portfolio grid.
    All these problem are in the front end.
    In the back end everything seems to be ok except for the page aspect/personalize that lost my log in and if i insert user and pw it keeps to ask me the log in.

    If i come back to old site url, and delete frome the root site .htaccess and index.php file, everything come back to work properly.

    I’ve read many guide for this process and i can’t find any solution.
    Could you help me please?

    Thanks a lot for your collaboration.
    Best regards.

    Giuseppe.

    #673313

    This topic was supposed to be about the header! That was two weeks ago and I still haven’t received support.

    I’ve given up on the enfold map. There is clearly an issue that’s being brushed aside. I have instead embedded a map direct from google.

    #673297

    Hi,

    add a top value to my code:

    div#text-4 {
    top: 20px;
    }
    

    and adjust as needed.

    You can move social icons with this:

    ul.noLightbox.social_bookmarks.icon_count_4 {
    top: 110px !important;
    }
    

    Best regards,
    Andy

    #673232

    In reply to: Customize my theme

    Hi!

    Your website does not load on my end. Attached a screenshot in private content field.

    You have two threads in total, this one and the other one – https://kriesi.at/support/topic/help-message-error/ which we have already replied. I am not sure about which thread you are talking about. Please elaborate.

    Regards,
    Yigit

    #673225

    In reply to: SVG to PNG Fallback

    this thread of mine is a long time ago – and on this time i noticed that this code works well but makes the whole thing extremly slow !:

    function svg_replace(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.avia-msie-8 img[src$="svg"]').attr('src', function() {  
        return jQuery(this).attr('src').replace('.svg', '.png');
      });
    </script>
    <?php
    }
    add_action('wp_footer', 'svg_replace');

    _____________________________________

    On that time i thought a bit like you that every browser must handle an installation as well!

    But now i think we have to weigh here.
    A 100% browser compatibility and very slow ie8 reaction – and 97% browser combatibility to no Ie8 support .

    IE8 has a market share of 2% of 11% of all IE. Google Maps Api (and the other apis too) did not support IE8 – every IE8 Support has stopped from Microsoft.
    So it is much more important that an installation works well on smartphones and tabletts.

    #673220

    Hi,

    I’ve put this code into your Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .slideshow_caption h2 {
    font-size: 10px !important;
    }}
    @media only screen and (max-width: 767px) {
    .responsive #top .slideshow_caption .avia-caption-content {
    font-size: 15px !important;
    }} 
    

    and now it’s working as expected. Adjust font-size as needed.

    Best regards,
    Andy

    #673212

    In reply to: Curved Menu 02

    Hi Basilis,

    Thanks for the reply, but I have opened this thread because Yigit asked me for that : LINK

    #673185

    In reply to: Spaltenabstand

    #673178

    In reply to: Translation problems

    Hi,

    if there are some corrupted files then there is no other way to get rid of them. Let us know when you’re ready and still need help with this topic.

    Best regards,
    Andy

    #673175
    vovemod
    Participant

    Hey Kriesi.

    So im currently working on a page using your Enfold Theme, and wanted to make the mobile menu fixed, which i have done.
    The problem is when you click a anchor link to a different section on the page, it moves outside of the content area, and widens the site.
    Also when clicking the menu, it brings you back to the top of the page, this is not a major problem though.

    The main problem is that the menu goes outside the screen when clicking an anchored link, and stays hidden unless u swipe outside the content area to the right.
    To get a visual of what im trying to explain, go to: http://varmvelkomstaarhus.dk (767px or lower) -> click the mobile menu -> click on “om os” or “kontakt” and swipe to the right of the page -> scroll a bit up for the menu to show.

    I simply have no clue how to get this to work. hope you can help.

Viewing 30 results - 91,711 through 91,740 (of 142,715 total)