Forum Replies Created

Viewing 30 posts - 181 through 210 (of 238 total)
  • Author
    Posts
  • in reply to: Google Index #793266

    Morning,

    It takes time for google to crawl a site so it may just be coincidence that folders have popped up after the update.
    Are you using any SEO plugins to generate a sitemap and or robots.txt?

    You can use robots.txt to stop bots crawling certain folders. For example…

    User-agent: *
    Disallow: /cgi-bin/
    Disallow: /tmp/
    Disallow: /junk/

    The Yoast SEO plugin has a functions to limit folders from your site map and hence stop Google crawling them.
    Be careful when blocking folders as if google cant crawl certain resources (i.e. css files or js files) it may be a red mark against you.

    Hope that helps

    TJ

    in reply to: Remove logo on mobile only on frontpage #793261

    morning,

    You could try the following…

    @media only screen and (max-width: 990px) {
    #top .av_header_transparency.av_alternate_logo_active .logo a > img {
      display:none;}
    }

    Hope that helps

    TJ

    in reply to: How to make product title smaller #792323

    Hi there,

    To shrink the title on a mobile device you’ll need to use media queries

    @media only screen and (max-width: 990px) {
            .product_title {font-size:20px!important;}
    }

    The first line is saying for any screen that is 900px wide or smaller do the following.
    The next line is saying any element that has a class of product_title make the font size 20px.

    Now, 20px may still be too big if so just reduce the value.

    Hope that helps

    TJ

    in reply to: Tab Section ID's for pretty urls #791619

    Hey,

    That does work in respect of being able to open a specific tab using a url.
    That isn’t what I’m after sadly.

    The above method gives a url like…
    https://samplesite.com/sample-page/?tabsort=4

    That isn’t pretty. Isn’t informative. And isn’t good for SEO.

    I’d imagine it is something that is in the pipeline, the same as the urls for tab toggle elements.

    Thanks

    TJ

    Hi there,

    The code below should keep all tabs open until a user clicks to close them

    function add_custom_script_1(){
    ?>
    <script>
    (function($){
    $(window).load(function() {
    	var toggler    = $('.toggler');
    	var togglewrap = $(toggler).next();
    	$(toggler).each(function(index, element) {
            $(togglewrap).css({
    			'display'   : 'block',
    			'position'  : 'static',
    			'visibility': 'visible',
    			'width'     : 'auto',
    			'z-index'   : 1,
    		});
    		
    		$(this).addClass('activeTitle');
        });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script_1', 1);

    The question on SEO…

    Back in 2016 google did update their webmaster policy around tabbed / hidden content…

    “Make your site’s important content visible by default. Google is able to crawl HTML content hidden inside navigational elements such as tabs or expanding sections, however we consider this content less accessible to users, and believe that you should make your most important information visible in the default page view.”

    Not good :(

    They did do a U-turn on this late last year and stated that tabbed / hidden content wouldn’t hurt SEO and would be indexed just with a lower authority than standard content. If you have content that is important it’s best to not hide it in any way especially if it has keywords in it. Hidding keywords away could be flagged as potential black hat.

    Personally the idea of keeping all the tabs open seems like a good one. It’ll allow users to see all content and collapse what isn’t relevant AND keeps google happy.

    3000 – 4000 words seems a little high but I don’t know the context of the page. People tend to turn off after reading a huge amount.
    Just my two cents :)

    Hope that helps

    TJ

    • This reply was modified 7 years, 6 months ago by tjswarbs78.
    in reply to: Open masonry items in new window #744830

    OMG i can’t believe i didn’t think of that!

    Thanks

    TJ

    • This reply was modified 7 years, 9 months ago by tjswarbs78.
    in reply to: Custom Post Type – Elegant Blog Slide Meta Question #741135

    Ismael :)

    There is a excerpt there but it doesn’t show.

    I had a play with some of the setting in the Custom Post Type UI plugin and the meta info now appears

    The following combination of check boxes seems to work.. very odd though.

    cpt fixed

    I’m guessing some of the settings must have been messing with a hook?

    Who knows but it works now. I should have started there I guess this theme is bulletproof ;)

    Thanks

    TJ

    in reply to: sort by category AND tag. #740696

    Ah bugger, I did think that would be the answer.

    I’m fine styling the plugin with css myself but thank you was just hoping someone may have requested this before so some code would be laying around.

    Thank you :)

    TJ

    in reply to: BUG: Colour section custom height doesn't work responsively #739388

    How do,

    From looking at the code you are using a color section to display the banner image. Have you set a minimum height of 430px to the color section or any element inside in?
    430px padding

    This is causing the color section to honour a 430px height regardless of screen size. The image is then scaling to the screen size ie getting smaller but the “container” is still 430px high not the height of the image, hence the white space

    Options
    1.You could use media queries to lessen the height at various screen sizes.
    2. You could chop the image into three separate ones and use the grid row element to display them. That does work, I’ve tried it , but it does crop the images a little.
    3. Await a proper support person who may be able to advise better than I

    Hope I’ve helped a little

    Thanks
    Tj

    • This reply was modified 7 years, 10 months ago by tjswarbs78.
    in reply to: ONE PAGE SCROLL #739360

    Morning (but only just here in the UK)

    The method for setting an anchor link to a grid row is the same as when using a color section

    Click Edit on the Grid Row and under “For Developers: Section ID” type your anchor name e.g. sample (don’t add in a ‘#’)

    Next go to Appearance>Menus and use Custom Links to create your menu item.
    Use #sample (in our example) and what ever you want for the Link Text.

    That’ll create a menu item that scrolls to the #sample anchor.

    Hope that helps. I can post some screen shots if you are still unsure.

    Thanks
    TJ

    Morning,

    You can add the files via ftp but it also requires a little bit of extra tweaking.

    I found this post on here outlining the process.

    adding icons via ftp

    Hope it all makes sense

    Thanks
    TJ

    in reply to: Mysterious Sidebar-Content – cant remove it #739342

    Hello,

    Under Theme Options> Sidebar Settings do you have the highlighted bit checked?

    sidebar settings

    That will add a menu to the sidebar if a certain page has nested menu items.

    Hope that helps, if not I’m sure the real support will assist :)

    Thanks
    TJ

    in reply to: Read more button on elegant blog layout #739011

    Nice on Yigit :)
    Nah it’s cool I’ll delete the custom css on the next update.
    As always you guys never disappoint :)

    Thanks
    TJ

    in reply to: Read more button on elegant blog layout #738988

    Afternoon,

    Renko’s image does indeed show what happens within the elegant blog layout.
    I have the latest version of Enfold, I’ve just download it before typing this…
    opening up layout.css and going to line 2416 the code still be there.

    .html_elegant-blog .avia-content-slider .read-more-link{
    	position: relative;
    	top:18px;	
    }

    As i said it’s not really a support thing as I just custom css it out again. Just wondering why it’s there in the first place.

    Thanks :)

    TJ

    Hey,

    Hmmm well this is odd. For no reason at all the category and footer info has appeared

    new image

    I guess this issue is solved!

    Very strange

    in reply to: Hide certain pages from Ajax search. #668676

    Does this work for hiding pages from the main search page too>

    Thanks

    in reply to: Content not showing #618517

    De-bug info show your are running older version…

    Debugging Info for Theme support:

    Theme: Enfold
    Version: 3.4.3
    Installed: enfold
    AviaFramework Version: 2.3
    AviaBuilder Version: 0.8
    ML:256-PU:43-PLA:12
    WP:4.5
    Updates: enabled

    If you’ve recently updated wordpress to version 4.5 you’ll need to get the latest version of Enfold which is 3.5, as there are some compatibility issues. If you’re running on a managed server that auto updates wordpress issues like this can crop up.
    You can do a manual update of Enfold via ftp or cpanel if you have access.

    Hope this helps some :)

    TJ

    in reply to: portfolio grid category #589657

    Top banana :)

    Works a treat.
    If I ever meet you I owe you a drink.

    Thanks

    TJ

    in reply to: change default font to Tahoma (not listed in options) #589163

    Hi,

    I believe Tahoma is web safe so using css to change it should be ok.

    p {
    font-family: tahoma!important;
    }

    will change of normal text but not links, headers etc

    p, a, h1 ,h2 , h3, h4 ,h5 ,h6{
    font-family:Tahoma!important;
    }

    will change them all.

    Whether that is the quickest / best way I’m not sure but it will work

    Hope that helps

    TJ

    in reply to: Custom colored icons ? #589151

    Hi,

    Ah you want to replace the icon with a custom image, apologies for the confusion.

    Try Yigit’s method here

    replace iconbox icon with own image

    I’ve given it a quick test and it works ok. Just holla if you run into a problem

    TJ

    in reply to: enfold search box customization #588987

    Hi,

    adding the following to the quick css should change the colour when hovering…

    #searchsubmit:hover{
    background-color:#eebbee!important;
    }

    Change the value #eebbee to whatever color you need.

    Hope that helps

    TJ

    in reply to: remove date from masonry #588982

    Hi,

    You can use some css to hide the date. Just pop below in the quick css

    .av-masonry-date{
    display:none!important;
    }

    Hope that helps

    TJ

    in reply to: Blog Post Element > Buttons Cut Off #588941

    Hi,

    As I can’t see the images as not staff I’m going to take a stab in the dark as I’ve seen this before when using the Elegant grid style for blog posts

    This code adds some padding to the bottom of the post excerpt if you are using grid layout

    .slide-entry-excerpt {
      padding-bottom:32px;
    }

    If not using grid layout try

    .entry-content {
      padding-bottom:32px;
    }

    Change the padding value until you get the desired look.

    It worked for me, hope it helps

    TJ

    • This reply was modified 8 years, 9 months ago by tjswarbs78.
    in reply to: Custom colored icons ? #588925

    Hi,

    The theme uses Entypo Iconfont pack as default but you can upload your own to use.

    Go to fontello.com/ where you can select more icons or even create your own.
    Once done download the icon pack from the website and upload it in the back end of WordPress using the media tab.
    Next you need to import the iconpack. To do this go to theme options > import / export > Iconfont Manager.
    After that the icons will be ready to use throughout the theme.

    As for the color. The icon box element has an option for changing the color.

    icon color backend

    You can start adding css to change the color on hover but that becomes a little more complicated.

    Hope that helps

    TJ

    in reply to: Breadcrumbs, Hover & Footer Font colour #588601

    Hi,

    So long as you haven’t made too many changes to the theme options you can reset ALL options to default by clicking the bottom left button (it’ll be grayed out).

    As for the beadcrumb…..

    .title_container .main-title a {
      color:#EEBBEE !important;
      font-size:20px;
    }

    That code changes the title part of the breadcrumb

    .breadcrumb-trail, .trail-begin{
    font-size:20px;
    color:#eebbee!important;
    }
    .trail-begin:hover{
    color:yellow!important;
    }

    That code will change the size / color of the actual breadcrumb. .trail-begin is the class of the link and will change yellow in above example.
    Depending on how big you make the font you may need to pad down the breadcrumb so it looks neater.

    If that’s the case add this too…

    .breadcrumb-trail{
    padding-top:20px;
    }

    Hope that helps

    TJ

    in reply to: Removal of 'You are here' in breadcrumb trail #588471

    And to remove the previous / next arrows try…

    #top .avia-post-nav {
    display:none!important;
    }

    TJ

    in reply to: Removal of 'You are here' in breadcrumb trail #588467

    Hi,

    You can use some css to hide it

    span.trail-before {
    display: none!important;
    }

    Hope that helps

    TJ

    in reply to: Widget in header #588314

    you may want to delete that last post quickly!!

    in reply to: portfolio grid category #588297

    Morning,

    The code didn’t seem to do anything. Only the excerpt is showing still. Below is snippet from the php file…

    switch($contents)
    				{
    					case "excerpt": $excerpt = $entry->post_excerpt; $title = $entry->post_title; break;
    					case "title": $excerpt = ''; $title = $entry->post_title;  break;
    					case "only_excerpt": $excerpt = $entry->post_excerpt; $title = ''; break;
    					case "no": $excerpt = ''; $title = ''; break;
    				}
    				
    				$cats = get_the_term_list($the_id, 'portfolio_entries', '', ', ','').' ';
    				$custom_overlay = apply_filters('avf_portfolio_custom_overlay', "", $entry);
     $output .= apply_filters('avf_portfolio_extra', "", $entry);
                        $output .= "<div class='av_table_col first portfolio-entry grid-content'>";
    					 
    					if(!empty($cats))
                    {
                        $output  .= '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
                        $output  .= $cats;
                        $output  .= '</span>';
                    }
    
                        if(!empty($title))
                        {
                            $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));

    Any ideas?
    If you test it your end and it works could you send me the portfolio.php file somehow?

    Thanks

    in reply to: How do i Remove "Enfold Theme by Kriesi" from the footer? #587395

    Hi,

    Go to Theme options>footer and in the copyright box add [nolink].

    That will remove the ‘Theme by…’

    TJ

Viewing 30 posts - 181 through 210 (of 238 total)