Forum Replies Created

Viewing 30 posts - 60,481 through 60,510 (of 67,534 total)
  • Author
    Posts
  • in reply to: Disable lightbox on product page? #233595

    Hi heelia!

    Thank you for using the theme. I hope you’re doing great.

    You can add this on Quick CSS or custom.css to disable the lightbox:

    .woocommerce-main-image {
    pointer-events: none;
    }

    For the other request, you might want to hire a freelance developer to add the modifications. For further customization, please visit Werkpress.

    Regards,
    Ismael

    in reply to: Self-Hosted Video Background #233593

    Hey!

    You can add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    #top .av-video-slide .avia-slide-wrap {
    background: url('IMAGE URL HERE') no-repeat center center;
    }
    }

    Change the background url.

    Cheers!
    Ismael

    in reply to: How to highlight the actual menu page #233591

    Hey!

    You can use this:

    .main_menu ul:first-child > li a {
    line-height: 40px;
    height: 40px;
    }
    
    #avia-menu {
    top: 40px;
    position: relative;
    }

    Change the top value to move the vertical position of the menu.

    Regards,
    Ismael

    in reply to: main logo relocation at the front page. #233589

    Hi!

    Please remove everything that we added to modify the homepage then use this:

    .home .main_menu {
    right: 0;
    margin-top: 50px;
    text-align: center;
    width: 100%;
    }
    
    .home div .logo { left: 40%; margin-top: -10px; }
    
    .home .main_menu ul:first-child > li > a {
    padding: 0 50px!important;
    }
    
    .home #avia-menu {
    display: inline-block;
    z-index: 0;
    background: none;
    }
    

    Best regards,
    Ismael

    in reply to: Still having problems with Colorbox heights #233584

    Hi!

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

    @media only screen and (max-width: 481px) {
    #big-headline {
    min-height: 400px !important;
    }
    }

    Regards,
    Ismael

    in reply to: how to open portfolio custom link in a new window? #233581

    Hi!

    Edit portfolio.php on the same folder, find this code on line 411:

    $output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.$image."</".$link_markup[1].">";
    

    Replace it with:

    $output .= "<".$link_markup[0]." target='_blank' data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.$image."</".$link_markup[1].">";
    

    And this code on line 425:

    $output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size )."</".$link_markup[1].">";
    

    Replace it with:

    $output .= "<".$link_markup[0]." target='_blank' data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size )."</".$link_markup[1].">";
    

    Another line of code that you have to change is on line 432:

     $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
    

    Replace it with:

     $output .= "<h3 class='grid-entry-title entry-title' $markup><a target='_blank' href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
    

    Cheers!
    Ismael

    in reply to: Social share buttons in lightbox / prettyPhoto #233578

    Hey!

    Please edit js > avia.js, find this code:

    elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
    

    Replace it with:

    elements.prettyPhoto({ slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
    

    This will activate the twitter and facebook buttons.

    Cheers!
    Ismael

    in reply to: search: edit the text #233321

    Hey!

    Please edit the layers with the caption then go to Attributes panel. Add a unique css class or id selector. You can use it inside a media query on Quick CSS or custom.css to change the font size and the position of the caption on mobile or tablet view. For example, add “awesome-layer” on the classes field. Use this on Quick CSS:

    @media only screen and (min-width: 768px) and (max-width: 989px) { 
    .awesome-layer {
    font-size: 12px;
    margin-left: -50px;
    }
    }

    If that doesn’t work use this:

    @media only screen and (max-width: 767px) {
    .awesome-layer {
    font-size: 12px;
    margin-left: -50px;
    }
    }

    Cheers!
    Ismael

    in reply to: how to open portfolio custom link in a new window? #233311

    Hi!

    Sorry for that. I thought you’re using the portfolio grid element. Please edit config-templatebuilder > avia_shortcodes > masonry_entries.php, find this code on line 782:

    if(!empty($this->atts['container_links']) || !empty($custom_url))
    				{
    					$this->loop[$key]['html_tags'] = array('a href="'.$this->loop[$key]['url'].'"','a'); //opening and closing tag for the masonry container
    				}

    Replace it with:

    if(!empty($this->atts['container_links']) || !empty($custom_url))
    				{
    					$this->loop[$key]['html_tags'] = array('a target="_blank" href="'.$this->loop[$key]['url'].'"','a'); //opening and closing tag for the masonry container
    				}

    Best regards,
    Ismael

    in reply to: Top Navigation Menu is not showing. #233304

    Hi!

    The login details are not working:

    login to http://resourcegoldmine.com/wp-admin
    username – kriesi
    password – enfoldteam1

    Please check it again.

    Best regards,
    Ismael

    in reply to: WooCommerce Shopping Cart Widget Buttons #233300

    Hey LordLiverpool!

    Can you please give us a link to the actual website? We need to inspect it.

    Best regards,
    Ismael

    in reply to: Portfolio Categories Icons #233299

    Hey IcosMediaKunden!

    In my end, I have portfolio sort category called css. I added a code on Quick CSS, something like this:

    .css_sort_button {
    padding-left: 30px;
    background: url('ICON IMAGE URL HERE') left no-repeat;
    }

    If you have a category called html, you can change the selector to html_sort_button etc.

    Regards,
    Ismael

    Hi!

    Please check Settings > General, WordPress Address and Site Address should be exactly the same. Add this on .htaccess:

    <IfModule mod_mime.c>
      # Audio
        AddType audio/mp4                                   m4a f4a f4b
        AddType audio/ogg                                   oga ogg opus
    
      # Video
        AddType video/mp4                                   f4v f4p m4v mp4
        AddType video/ogg                                   ogv
        AddType video/webm                                  webm
        AddType video/x-flv                                 flv
    
      # Web fonts
        AddType application/font-woff                       woff
        AddType application/vnd.ms-fontobject               eot
    
        # Browsers usually ignore the font MIME types and simply sniff the bytes
        # to figure out the font type.
        # http://mimesniff.spec.whatwg.org/#matching-a-font-type-pattern
    
        # Chrome however, shows a warning if any other MIME types are used for
        # the following fonts.
    
        AddType application/x-font-ttf                      ttc ttf
        AddType font/opentype                               otf
    
        # Make SVGZ fonts work on the iPad.
        # https://twitter.com/FontSquirrel/status/14855840545
        AddType     image/svg+xml                           svgz
        AddEncoding gzip                                    svgz
    </IfModule>

    Best regards,
    Ismael

    Hey honesty1993!

    I’m sorry but you can’t put a video thumbnail when using the Video element. You can use the html video tag. Something like this:

    [video src="VIDEO_URL" width="640" height="360" poster="THUMBNAIL URL HERE"]
    

    For more info, refer to this link: https://codex.wordpress.org/Video_Shortcode

    Cheers!
    Ismael

    in reply to: Combo widget does not update popular tab #233279

    Hey hgroen!

    The popular tab is base on the number of comments a certain post have. Do you have comment sections for your posts?

    Regards,
    Ismael

    in reply to: Easy Slider problem on mobile #233275

    Hi!

    Glad we could help. Can you please post a screenshot of how it looks on your “Samsung tab 7”? The slider images are blurry?

    Regards,
    Ismael

    Hey!

    Please hire a freelance developer to check this on xp. What versions of Chrome and Firefox are you running on xp?

    Regards,
    Ismael

    in reply to: Problem with blog excerpt #233268

    Hey Miikey!

    Can you please give us a link to the blog page? Please add this on functions.php:

    add_filter('avf_title_args', 'fix_blog_page_title', 10, 2);
    function fix_blog_page_title($args,$id) {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    return $args;
    }

    Regards,
    Ismael

    in reply to: Icon rollover into portfolio #233258

    Hey!

    If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page. You should look for the portfolio page’s id.

    .page-id-2251 .image-overlay.overlay-type-extern .image-overlay-inside::before{
    	content: url(https://1.gravatar.com/avatar/707b60c56bd8d542ae9f872631c1aefa?s=80&d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D80&r=G);
    }

    Regards,
    Ismael

    in reply to: Change body Font Size of Accordion Tabs #233255

    Hey ZenzeMedia!

    You can use this on Quick CSS, this is for the accordion content:

    .toggle_content {
    font-size: 11px;
    }

    And this is for the toggle title:

    .toggler {
    font-size: 12px;
    }

    Best regards,
    Ismael

    in reply to: Inaccurate bounce rate? #233252

    Hey whitstablesunsets!

    What do you mean the way the page load? Bounce rates come from visitors that don’t interact with the website. Due to the fact that you redesign the website using Enfold, maybe users are more interested with the website now because of the improvements.

    Cheers!
    Ismael

    in reply to: Site title duplicates Meta Title #233239

    Hi!

    What is your title template settings for Title & Metas > Post Types > Pages? You should probably check that.

    Best regards,
    Ismael

    in reply to: Create Simple Columns with NoMargin #233234

    Hi!

    Can you please give us a link to the website? Unfortunately, you can’t add a custom css class for column layouts. You can create a text block then add something like this:

    <div class="flex_column av_one_half first custom">Content here</div><div class="flex_column av_one_half">Content here</div>
    

    Add this on Quick CSS or custom.css:

    .flex_column.av_one_half.first.custom {
    margin: 0;
    float: left;
    clear: none;
    }

    Best regards,
    Ismael

    in reply to: Layout makes "jump". #233195

    Hey!

    You can edit the footer columns on Appearance > Widgets, add widgets on the Footer – Column widget area. The area will adjust according the footer content. You can add this on Quick CSS or custom.css to decrease the footer padding:

    #footer {
    padding: 5px 0 5px 0;
    z-index: 1;
    }

    Cheers!
    Ismael

    in reply to: How to highlight the actual menu page #233193

    Hi Sven!

    You can add this on Quick CSS or custom.css:

    #top .main_menu .menu li:hover {
    background: gray;
    }

    Best regards,
    Ismael

    in reply to: Section depth #233192

    Hey!

    Please use this on Quick CSS or custom.css:

    #av_section_1 > div > div > div > div > div.flex_column.av_one_fourth.first.avia-builder-el-13.el_before_av_three_fourth.avia-builder-el-first > section {
    margin-top: 25px;
    }
    
    .page-id-75 .avia-section-small .content {
    padding-top: 0;
    }

    Regards,
    Ismael

    in reply to: Accordion panels on the same level #233189

    Hey!

    Please add this on Quick CSS or custom.css:

    #main > div.main_color.container_wrap.fullsize > div > main > div > div > div.flex_column.av_one_half.avia-builder-el-11.el_after_av_one_half.avia-builder-el-last.column-top-margin {
    margin-top: -8px;
    }

    Cheers!
    Ismael

    in reply to: hide date in posts #233188

    Hi!

    Please add this one:

    .slide-meta-time {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Custom loading Portfolio titles #233185

    Hi!

    Thank you for using the theme. I hope you’re doing great.

    I’m really sorry but that is a bit unclear for us. I’m not sure if I understand you clearly. Maybe, a screenshot will help.

    Best regards,
    Ismael

    Hey robinwo!

    Thank you for using the theme. I hope you’re doing great.

    Have you tried flushing the W3 Total Cache plugin settings? You can also deactivate it first then check the website again.

    Cheers!
    Ismael

Viewing 30 posts - 60,481 through 60,510 (of 67,534 total)