Forum Replies Created

Viewing 30 posts - 23,341 through 23,370 (of 25,536 total)
  • Author
    Posts
  • in reply to: Random Code Lingering In Footer #746073

    Hi,

    I tried checking on the new issue, added a 1/2 row with a text block and some text in the hiring page and it worked just fine, I have removed it as soon as I saw it working. Can you give us steps on how we can see the new issue?

    As for the footer issue, can you try to deactivate all plugins and see if it removes the issue? if not can you give us permission to deactivate plugins and also give us ftp access, so we can check on this further.

    Best regards,
    Nikko

    in reply to: Sorting by custom_value_num is working only in current page. #745899

    Hi,

    Thanks for giving us access and patience for a bit delayed reply (I haven’t fixed it after few tries), It should be fixed now. I have modified this part of the code:

    if(!empty($post_ids))
        {
    
            $atts   = array(
                'type' => 'grid',
                'items' => get_option('posts_per_page'),
                'columns' => 4,
                'class' => 'avia-builder-el-no-sibling',
                'paginate' => 'yes',
                'use_main_query_pagination' => 'yes',
              	'custom_query' => array( 
                	'meta_query' => array(
        			 	array(
                         'key' => 'valikoimassa',
                         'value' => 'ei',
                         'compare' => 'NOT EXISTS' 
                      	)
                    ) ,
                    'meta_key' => 'Hinta',
                	'orderby' => 'meta_value_num', 
                	'order' => 'asc',
                	/*'post__in'=>$post_ids, */
                	'post_type'=>get_post_types(),
        			'tax_query' => array(
        		    	array(
        		    		'taxonomy' => $tax_name,
        		    		'field' => 'term_id',
        		    		'terms' => $tax_id
        		    	)
        		  	),
                ),
    
            );

    to:

    if ( get_query_var( 'paged' ) ) { $paged = get_query_var( 'paged' ); }
    elseif ( get_query_var( 'page' ) ) { $paged = get_query_var( 'page' ); }
    else { $paged = 1; }
    
    $tax_id = get_queried_object()->term_id;
    $tax_name = get_queried_object()->taxonomy;
    
    if(!empty($post_ids))
    {
    
        $atts   = array(
            'type' => 'grid',
            'items' => get_option('posts_per_page'),
            'columns' => 4,
            'class' => 'avia-builder-el-no-sibling',
            'paginate' => 'yes',
            'use_main_query_pagination' => 'yes',
            'custom_query' => array( 
                'meta_query' => array(
                    array(
                     'key' => 'valikoimassa',
                     'value' => 'ei',
                     'compare' => 'NOT EXISTS' 
                    )
                ) ,
                'meta_key' => 'Hinta',
                'orderby' => 'meta_value_num', 
                'order' => 'asc',
                /*'post__in'=>$post_ids, */
                'post_type'=>get_post_types(),
                'tax_query' => array(
                    array(
                        'taxonomy' => $tax_name,
                        'field' => 'term_id',
                        'terms' => $tax_id
                    )
                ),
                'paged' => $paged,
            ),
    
        );

    Let us know if it’s working fine :)

    Best regards,
    Nikko

    in reply to: Can't change colors #745857

    Hey DesignIt,

    Tried to check ftp but I couldn’t access it, this is what appears when I try to connect (see Private Content). I think Yigit has already told you here what he has done: https://kriesi.at/support/topic/too-many-redirects/#post-635372 which he also mentioned here: https://kriesi.at/support/topic/color-change/

    Best regards,
    Nikko

    in reply to: Post comments misaligned – PLEASE DONT CLOSE UNTIL SOLVE #745648

    Hi,

    Glad we could help :)

    Regards,
    Nikko

    in reply to: Whitespace links u. rechts in der Sidebar verringern #745647

    Hey Austrianweb,

    Try to change it to this code:

    #top .inner_sidebar {
        margin-left: 0 !important;
    }

    If it doesn’t work, please post a link showing the page mentioned.

    Best regards,
    Nikko

    in reply to: Bold #745645

    Hey sandra1307,

    Can you post a link to the page mentioned, so we can take a closer look.

    Best regards,
    Nikko

    in reply to: Yelp Icon #745643

    Hey sjahan,

    Can you give us temporary admin access? so we can inspect the issue further.

    Best regards,
    Nikko

    in reply to: Change the color background of the header phone/extra info #745642

    Hi,

    Go to Enfold > General Styling > Logo Area (tab) > Alternate Background color. Just change the color and that should do it :)

    Best regards,
    Nikko

    in reply to: "Accordion" Toggle – Animation problem! #745638

    Hi,

    Are you referring to the black lines?

    Best regards,
    Nikko

    in reply to: Disable Clicking and on Images #745637

    Hey franktw,

    Images that has no links doesn’t do anything when clicked. Can you give us a link to the page you are referring?

    Best regards,
    Nikko

    in reply to: Can't see the text from Blog posts #745633

    Hey corsifrancesco,

    Is the 3 images at the bottom, the one you are referring to as related posts? using masonry?

    Best regards,
    Nikko

    Hey goldenfate,

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

    #top #avia-menu > li > a:hover {
        background: transparent !important;
        text-decoration: underline;
    }
    
    #top #avia-menu > li > a:hover span.avia-menu-text {
        color: #aaa !important;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    in reply to: Change link of the logo #745630

    Hey Jose,

    You can change it in the Enfold theme files, go to enfold > framework > php > function-set-avia-frontend.php and find this line of code:

    $logo = "<$headline_type class='logo bg-logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>";

    just replace:

    ".$link."

    with the link you want to use. Hope this helps.

    Best regards,
    Nikko

    in reply to: Bug sub menu – doesn't work #745628

    Hi,

    Can you give us temporary admin access to your wordpress dashboard? so we can check the backend also.

    Best regards,
    Nikko

    Hi,

    Yes it’s possible to change that with css and target it specifically in tablets. Is this the image you want to replace to a color? see private content.

    Best regards,
    Nikko

    in reply to: Masonry not displaying correct number of elements #745624

    Hey Justyna_Schmidt,

    Can you post the link to the page mentioned and also give us temporary admin access, so we can atleast check the settings. Just post the login details in the private content section when you reply.

    Best regards,
    Nikko

    in reply to: testimonial #745623

    Hi,

    Can you try to replicate the page, then use the testimonial instead of text block and give us link to the url so we can check the testimonial like the one in the screenshot.

    Best regards,
    Nikko

    in reply to: Embedding an iFrame Full Screen with maximum height #745622

    Hey rpichler,

    I think you can modify the height and width in the settings of the flipbook. Can you give us temporary admin access? so we can check it out.

    Best regards,
    Nikko

    in reply to: Related Product Sizes #745621

    Hey Vincent,

    There’s a way for that, but would it be okay if it is cropped?

    Best regards,
    Nikko

    Hi,

    Yes, but you can override it using the instructions on this post: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Best regards,
    Nikko

    in reply to: Product categories grid #745613

    Hi,

    Glad you fixed it.

    Best regards,
    Nikko

    in reply to: Masonary Grid #745612

    Hi,

    You would need to change this part of the code:

    jQuery(‘.av-masonry-container a’).attr(‘target’, ‘_blank’);

    to this one:

    jQuery('.page-id-xx .av-masonry-container a').attr('target', '_blank');

    where xx is the page id number. Hope this helps.
    Best regards,
    Nikko

    in reply to: Perfectly Manual Masonry order issue #745455

    Hi,

    Yes, it has nothing to do with image order but I just find it weird why 1px gap is not working as it should on your site. Also the image order is good at the start but starting with image 4 it seems orientation is more on right to left with the order which is also weird. I also couldn’t see any errors. Have you added some js (javascript) or jquery script to the theme?

    Best regards,
    Nikko

    in reply to: Responsiveness of Productcategories on mobile phone #745444

    Hi,

    Sorry for the late response. Are you referring to the sidebar? try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .responsive #top #main .sidebar {
        display: block !important;
        width: 100% !important;
        border: 0 !important;
      }
    
      .responsive #top #main .sidebar .inner_sidebar {
        margin-left: 0 !important;
      }
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Maven Pro as heading text #745438

    Hi,

    Can you let us know what error it showed when you used the code? please try to add this code at the bottom of functions.php of your child theme:

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
      $fonts['New Maven Pro'] = 'Maven+Pro:400,700,400italic,700italic';
      return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
      $fonts['New Maven Pro'] = 'Maven+Pro:400,700,400italic,700italic';
      return $fonts;
    }

    Please copy the code from the forum and also make sure that the ‘ (apostrophe doesn’t change, sometimes it causes the problem especially when copied from email). Also Maven Pro is already in the body text, that’s why I renamed it to New Maven Pro, you may not include this one:

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
      $fonts['New Maven Pro'] = 'Maven+Pro:400,700,400italic,700italic';
      return $fonts;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Mobile Banner Image #745426

    Hi edgelogos,

    There’s no easy fix on this and each option is situational. For example “scale to fit” allows the whole image to be visible which means it will cover the whole width but not the whole height, this can be used in few cases however in your case I would suggest using on the analytics page, use stretch and bottom right since most of the important part of the image is located there, the 2nd link you gave should be same or might be center center since the important part of the image is in between center and right. It’s not a theme issue that’s why the theme is providing options.


    @BlueSpot85
    : Please create a new thread, the issue you have is on a slider, the one in this topic is using a color section.

    Best regards,
    Nikko

    in reply to: Mobile Menu: I don't see #745375

    Hi,

    Can you try to add this at the bottom of Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      #advanced_menu_toggle {
        display: block;
        right: 20px;
      }
    }

    Let us know if this helps. If not please give us temporary admin access, so we can inspect it further.

    Best regards,
    Nikko

    in reply to: Post comments misaligned – PLEASE DONT CLOSE UNTIL SOLVE #745364

    Hi,

    You have this code:

    .children .comment_content {
        margin-left: -73px;
        margin-right: 20px;
    }

    Please remove it.

    Best regards,
    Nikko

    Hi,

    Glad we could help, it could be some problem with mailchimp server but it’s all good now :)

    Cheers!
    Nikko

    in reply to: Make submenu sticky on mobile devices #744298

    Hi,

    Sorry I didn’t notice you were referring to a submenu. The submenu script isn’t compatible with mobile that’s why it’s disabled in mobile by default. I’m afraid there’s no easy way to do that and outside of the scope of our support. You might want to hire a freelancer to do this or contact our partner codeable: http://kriesi.at/contact/customization

    Regards,
    Nikko

Viewing 30 posts - 23,341 through 23,370 (of 25,536 total)