Viewing 30 results - 137,851 through 137,880 (of 142,733 total)
  • Author
    Search Results
  • #179733
    jmorillo
    Participant

    Hello, I have some questions related to woocommerce:

    1.- It’s possible to modify the category pages in woocommerce?
    I have taken the shop template and change the name to “tienda”. In this page I can add content on top with the template builder and after that the shop part is automatically displayed.
    It’s possible to manually modify each template for the categories so I can add content for SEO purposes (at least an H1 tag and some text)

    The main shop: In http://prepro.paadonline.org/tienda/
    Category 1: http://prepro.paadonline.org/categoria-producto/colchones
    King and queen size are categories 2&3

    If that is not possible I could create all the category pages by hand and use the shortcode of product grid but I’ll lose the sorting options and I’ll have to make redirects in the automatically pages created by woocommerce to target them to the manually created.

    2.- This question is very similar to the previous: It’s possible to create different sidebars for each category page?
    In http://prepro.paadonline.org/tienda/ I have 3 categories. I want the navigation and filtering the SAMES but to add unique elements depending of the category. It’s that possible? All the woocommerce category pages are automo

    3.- Last question. A black line appears to separate the sidebar and the main area. How can I get rid of this line?

    Many Thanks
    Jorge

    #179730

    Hey Rob!

    Can you please open Footer.php file in Appearance > Editor and check if 168th line is the same or not? It should be at the very bottom of the file http://i.imgur.com/M3XOqYo.jpg

    Cheers!
    Yigit

    #179714

    Hi!

    Do you mind creating a temporary admin login and posting it here privately so we can personally login and take a look?

    Regards,
    Yigit

    #179688

    Hi!

    Glad you figured it out Mike! But actually one curly bracket is missing in the end of the code. So it should be

    @media only screen and (max-width: 767px) {
    .responsive #top #header {
    position: fixed;
    } }

    Regards,
    Yigit

    #179685

    Hi thanp73!

    Please see Kriesi’s post here https://kriesi.at/support/topic/kriesi-logo/#post-161892
    I would suggest you to check Blog page time to time :)

    Regards,
    Yigit

    #179658

    Hey coachw!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired

    .mobile_active #advanced_menu_toggle { position: fixed; right: 30px; top: 130px; }

    You can post the link to your website and we can provide you more accurate code as well

    Best regards,
    Yigit

    #179647
    rudelabs
    Participant

    Hi! While I see some bugs while finishing http://wp6.rudelabs.com
    My portfolio structure is :
    > Desktop apps
    > Game Porting
    > Mobile Apps
    > Second Screen Apps

    Although I only have one project inside Second Screen Apps, if I click on any portfolio on homepage, my breadcrumbs always are “Home > Mobile Apps > second screen apps > project name”. Please, could you help me? the only project which must be on secod screen is motogp.

    #179640

    Hi nrosella!

    This is not always possible. Eg scripts like jquery.js and avia.js MUST load at the top (otherwise you’ll break the website) and it makes no sense to load them as inline js which is considered as non-blocking js (see https://developers.google.com/speed/docs/insights/BlockingJS ) because then the browser can’t cache the js files and you add 60-80kb unnecessary data to the html document. Like the article explains ( https://developers.google.com/speed/docs/insights/BlockingJS ) this makes only sense with very small scripts but not with the jquery framework script or bigger scripts like avia.js.

    These pagespeed hints are just guidelines and it’s not always the best practice or reasonable to follow them.

    Best regards,
    Peter

    #179616
    RevolutionGroup
    Participant

    Hi

    After the past couple of updates the ‘back to top’ button has not been displaying properly. On IE 10 no arrow shows up and in Firefox I get a weird looking character. I’ve cleared both the sites cache and my browser cache multiple times, so it is not related to that.

    My site can be found here: http://tinyurl.com/qae7m8y

    Regards,
    Rob

    #179606

    Hey!

    Please add following code to Quick CSS and adjust as desired

    #header_meta { border-top: solid black 4px; } 
    .avia-layerslider { border-top: solid black 4px!important; }

    I made changes in Header.php file. You can search “header-image” in Header.php file and find the image. Also added some custom CSS to Quick CSS to align it.

    Regards,
    Yigit

    Hi!

    The code was for screens smaller than 480px. Please try following if you have not solved already

    @media only screen and (max-width: 989px) {.avia_desktop .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry:hover .av-inner-masonry-content { opacity: 0!important; }}

    Regards,
    Yigit

    hi, thank you for your answer.
    It doesnt work!
    I’m using a child theme, that i don’t loose my settings after a theme update.
    So i created a folder enfold-child/css/custom.css:

    /* General Custom CSS */
    /*
    Desktop Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the desktop view of your site */
    
    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
    
        #top div div.product .woocommerce-tabs ul.tabs li a {
        padding: 9px 20px 10px 20px;
    
    }
    }
    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
    
    }

    Can I don’t use the style.css in the main child theme folder?

    And how can I use Quick CSS?

    Thank you for your answers.
    Regards
    Laenggi

    #179558
    #179555

    Sorry Ismael,
    It is in fact an image aligned ‘center’ with botttom to top animation. But nothing happens.
    I’ve noticed that only the centered images are removed troughout the site with this code:

    .avia_image.avia-align-center {display:none;}}

    So for now i’ve given all other images a left alignment and placed the above code that works.
    Offcourse now i can’t use centered images any more so when you got a correct solution to remove this picture only on my homepage then i would be glad to hear it.

    Cheers Herrbirk

    • This reply was modified 12 years, 4 months ago by MENS.
    #179552

    I was wondering the same thing when the author explained that to me, but I’m no expert in these things so I can’t find out myself. This is what the author explained:

    The theme that you are using is using a smooth scroll plugin which animated the scrolling of anchor links within your page. This is causing the conflict with cookieinfo’s more info link since it has is a anchor link and since the code for cookieinfo is added to the bottom of the html document, it is scrolling down to that position. The debugger error has nothing to do with the scrolling issue.

    I know there are free plugins, but the whole reason I buy premium items is that I could ensure premium quality. What if a free plugin stops being updated when WP updates? Premium files on Envato usually are of premium quality and make sure they stay compatible. How disappointing and frustrating this is.

    #179516

    The problem is solved. A different plugin caused the issues.

    #179500

    Hey!

    Please add this on your custom.css or Quick CSS:

    #footer .widget_nav_menu li {
    position: relative;
    margin: 0;
    clear: none;
    float: left;
    display: block;
    font-size: 11px;
    border-right: 1px solid;
    padding: 0 10px 0 10px;
    height: 20px;
    }
    
    #footer .widget_nav_menu li a {
    position: relative;
    top: -5px;
    }
    
    #footer .flex_column.av_one_fourth.first {
    width: 100%;
    }

    This will only work for one level menu group.

    Regards,
    Ismael

    #179476

    In reply to: product image

    Hey!

    Please add this on your custom.css or Quick CSS:

    .cloud-zoom-big {
    top: 0 !important;
    left: 300px !important;
    }

    Regards,
    Ismael

    #179472

    Topic: Enfold > fatal error

    in forum Enfold
    zerozendesign
    Participant

    Hey guys,

    Followed this instruction https://kriesi.at/support/topic/need-to-use-all-weights-of-the-open-sans-font-e-g-bold800/ to attempt to make more font weight options for open sans. Instead I am now getting
    Fatal error: Call to undefined function avia_header_setting() in /home/codeless/public_html/bunnndle.com/wp-content/themes/enfold/header.php on line 7

    Copied the code exactly.

    #179468

    Hi!

    Yigit’s code should work. Please try this:

    @media only screen and (min-width: 768px) {
    .avia_image.avia-builder-el-2.avia-builder-el-first.avia-align-center.avia_animated_image avia_animate_when_almost_visible.bottom-to-top.avia_start_animation {
    display: none !important;
    }
    }

    Cheers!
    Ismael

    #179461

    Hey!

    Please add this on your custom.css or Quick CSS:

    #top .avia-logo-element-container img {
    max-width: 100%;
    max-height: auto;
    }

    Regards,
    Ismael

    #179455

    Hi!

    Edit js > shortcodes.js, find this code on line 241:

    var target_offset = target_wrap.offset().top - 175,

    Replace it with:

    ar target_offset = target_wrap.offset().top - 100,

    Remove browser cache then reload the page a few times.

    Regards,
    Ismael

    #179451

    Hey!

    Did you try to activate the plugin again?

    Best regards,
    Ismael

    #179437

    it stops reading the link at the comma…

    #179423

    In reply to: Layerslider not saving

    Ok, we’ve seemed to have fixed this. It appears that by changing the URL in the image upload section to just /wp (we removed our url) it sorted it out. Not sure why it all of a sudden stopped working, but it’s fixed now. Thanks for your help Enfold.

    #179413
    mhiller
    Participant

    I found the code below in the forums that fixed the header in responsive mode. But when I enter it into QuickCSS, it overrides the default fonts. When I delete the code below from Quick CSS, the default fonts are restored. Site is: nexuscontentlab.com. Thanks Mike.

    
    @media only screen and (max-width: 767px) {
    .responsive #top #header {
    position: fixed;
    }
    • This topic was modified 12 years, 4 months ago by mhiller.
    #179408

    In reply to: Google font

    Hi gintheme!

    Please take a look at this topic: https://kriesi.at/support/topic/new-custom-font/

    Cheers!
    Josue

    #179404

    Hi darkcanvas!

    You can ask it here: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,
    Ismael

    #179386

    In reply to: Social Icons Alt Text

    Its not the menu causing this issue, its the back to top icon as it doesn’t contain a title. I have removed this line; temporarily so I can get the site hosted at uni.
    <a href='#top' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>></a>
    Is there a way of adding to this line so that the title is dynamically added dependent on the page your on?

    <a title="<page title here>" href='#top' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>></a>

    I don’t want to loose this functionality really.

    Can you advise me on how to add title’s to the social media links even if very generic eg: title=”facebook” title=”twitter”?

    Leave this with me for a day or so I’m having issues again since updating to 2.4.1

    • This reply was modified 12 years, 4 months ago by jono713. Reason: Update
    #179347

    Hi!

    I’m sorry but do you want to make the line thicker for the submenu?

    .main_menu ul:first-child >li > ul {
    border-top-width: 4px;
    border-top-style: solid;
    }

    Best regards,
    Ismael

Viewing 30 results - 137,851 through 137,880 (of 142,733 total)