Forum Replies Created

Viewing 20 posts - 4,781 through 4,800 (of 4,916 total)
  • Author
    Posts
  • in reply to: politcy privacy #82625
    Mahesh
    Participant

    Hi @marcodimi,

    The code you’ve put in the footer is fine. Please go to “Dashboard=> Appearance=> Theme Options=> WebMaster Tools=> Header and Footer Codes=> Code to display on Footer” box and make sure the following code is there, if not then paste it there.
    <script type=”text/javascript”>(function (w,d) {var loader = function () {var s = d.createElement(“script”), tag = d.getElementsByTagName(“script”)[0]; s.src = “//cdn.iubenda.com/iubenda.js”; tag.parentNode.insertBefore(s,tag);}; if(w.addEventListener){w.addEventListener(“load”, loader, false);}else if(w.attachEvent){w.attachEvent(“onload”, loader);}else{w.onload = loader;}})(window, document);</script>

    Go to “Dashboard=> Appearance=> Theme Options=> WebMaster Tools=> Header and Footer Codes=> Code to display on Header” box and remove all codes from there.
    Then click “Save”.

    Let me know if this helps.

    Regards,
    Mahesh

    in reply to: politcy privacy #82455
    Mahesh
    Participant

    Hi @marcodimi,

    Please share the script and html codes provided to you for the “Privacy Policy”.

    Regards,
    Mahesh

    in reply to: Featured Page Slider for certain pages only #82444
    Mahesh
    Participant

    Hi @Pia,

    That’s great, you’ve figured it out yourself.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: politcy privacy #82443
    Mahesh
    Participant

    Hi @marcodimi,

    I think you’ve some unclosed html tags in the footer code, please replace your footer code with the codes below:

    <div class="copyright">Autore del Blog: <a href="http://marcodimizio.com/" title="Marco Di Mizio"><span>Marco Di Mizio</span></a></div>
    <div class="powered"></div>
    <a href="//www.iubenda.com/privacy-policy/463315" class="iubenda-white iubenda-embed" title="Privacy Policy">Privacy Policy</a>

    Currently in your site, I am seeing 3 “Privacy Policy” buttons, one in “Footer Widget”, one in “Footer” and one in the “Bottom-Right Corner”. The above code is for the one in the “Footer”. It will place the “Privacy Policy” button just below “Autore del Blog: Marco Di Mizio” aligning left.

    Let me know if this solves your issue.

    Regards,
    Mahesh

    in reply to: Latest posts section #82433
    Mahesh
    Participant

    Hi @venumurki,

    1. For your first issue i.e. combine featured content and latest-posts together into one section, this is beyond the theme scope, you have to hire a customizer.

    2. The second one, hiding Posted On in latest post, create a child theme ( You can find the details on how to create a child theme HERE ). Then in child theme’s function.php add the following codes. This will hide the Posted On from post in home page only.

    if ( ! function_exists( 'adventurous_header_meta' ) ) :
    
    function adventurous_header_meta() {
    
    	$date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>',
    		esc_url( get_permalink() ),
    		esc_attr( get_the_time() ),
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date() )
    	);
    
    	$author = sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>',
    		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    		esc_attr( sprintf( __( 'View all posts by %s', 'adventurous' ), get_the_author() ) ),
    		get_the_author()
    	);
    
    	// Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
    	//
    	if ( is_home() && ! is_paged() ) {
            $utility_text = __( '<span class="on-date">%1$s</span><span class="by-author"> by %2$s</span>', 'adventurous' );
        }
        else{
        	$utility_text = __( '<span class="on-date">Posted on %1$s</span><span class="by-author"> by %2$s</span>', 'adventurous' );
        }
    
    	printf(
    		$utility_text,
    		$date,
    		$author
    	);
    }
    endif;

    3. For displaying search box instead of magnifying glass, please add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:
    Note: This will only place search box in desktop view as it may cause design issue in responsive design. So the mobile view will be same as before.

    @media screen and (min-width: 981px){
        #header-right .header-search-wrap {
            display: block;
            position: static;
            padding: 0;
            border: none;
            opacity: 1 !important;
        }
        #header-search {
            display: none;
        }
        #header-right #header-search-widget{
            width: 272px;
        }
    }

    Regards,
    Mahesh

    in reply to: Where can I change footer content #82427
    Mahesh
    Participant

    Hi @Joerg,

    Thank you for using Catch Adaptive Pro.
    For changing footer content, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Footer Editor Options” and change the content in ”
    Footer Left Content” for text in footer left, and “Footer Right Content” for text in footer right respectively. Then click “Save & Publish” button.

    Regards,
    Mahesh

    in reply to: Changing text color & font – Catch Everest FREE Theme #82423
    Mahesh
    Participant

    Hi @adunning,

    The feature is already built-in in the Catch Everest Pro version except the primary menu font, so I would recommend you to upgrade to Catch Everest Pro. But if you prefer to have it in the Catch Everest Free version, go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.
    1. To change the text color in the sidebar, the footer, the primary menu and the featured content titles

    /* Primary Menu Color */
    #header-menu ul.menu a {
        color: #00ff00;
    }
    
    /* Featured Content Title Color */
    #featured-post .entry-header .entry-title a {
    	color: #ff0000;
    }
    
    /* Sidebar Link Color */
    .widget-area .widget a, .widget-area .widget a:hover{
    	color: #0000ff;
    }
    
    /* Footer Color */
    #site-generator {
    	color: #0000ff;
    }

    2. to change the font in the featured content titles and primary menu

    /* If you use fonts which are not CSS built-in fonts, 
    you have to import it, here I have import Roboto Font 
    from google to use it in Featured Content Title */
    @import url("http://roboto-webfont.googlecode.com/svn/trunk/roboto.all.css");
    
    /* Primary Menu Font */
    #header-menu ul.menu a {
        /* Please replace the font family with your desire */
        font-family: Helvetica, sans-serif;
    }
    
    /* Featured Content Title Font */
    #featured-post .entry-header .entry-title a {
        /* Please replace the font family with your desire */
        font-family: 'Roboto', sans-serif;
    }

    Let me know if any issue.

    Regards,
    Mahesh

    in reply to: Mobile Site: Primary Menu #82422
    Mahesh
    Participant

    Hi @andrewf90,

    Thank you for your appreciation.

    Regards,
    Mahesh

    in reply to: Different page title colors? #82421
    Mahesh
    Participant

    Hi @effess,

    Yes, it can be done using class only. The above code I’ve given is also using class only. Use the upper one for changing entire site’s attachment page title to same color. If you want different page to have different color you have to specify the unique class, so you can use the lower one.

    Regards,
    Mahesh

    in reply to: Hide registre and lost pw link from login page #82378
    Mahesh
    Participant

    Hi @knudkp,

    For disabling “Register” link, go to “Dashboard=> Settings” and ‘uncheck’ “Anyone can register” in Membership. This will remove the “Register” Link.

    And for disabling the “Lost Password” link, create a child theme ( You can find the details on how to create child theme HERE ). Then in your child theme’s function.php add the following codes.

    add_filter ( 'allow_password_reset', '__return_false' );
    
    function catchbase_child_remove_password_reset_text ( $text ) { if ( $text == 'Lost your password?' ) { $text = ''; } return $text;  }
    
    function catchbase_child_remove_password_reset() { add_filter ( 'gettext', 'catchbase_child_remove_password_reset_text' ); }
    add_action ( 'login_head', 'catchbase_child_remove_password_reset' );
    
    function catchbase_child_remove_password_reset_text_in ( $text ) { return str_replace ( '<a href="http://localhost/me-prac-1/wp-login.php?action=lostpassword">Lost your password?</a>', '', $text ); }
    add_filter ( 'login_errors', 'catchbase_child_remove_password_reset_text_in' );

    Regards,
    Mahesh

    in reply to: Creating a blog page with all posts listed with thumbnails #82377
    Mahesh
    Participant

    Hi @Marijn,

    Thank you for using Catch Base Pro.
    Please follow these steps:
    1. Add two new pages, one to assign as static page and the another for displaying the blogs. Please skip this if you’ve already have the pages to assign for front page and blog page.
    2. Go to “Dashboard=> Appearance=> Customize=> Static Front Page” and select “A static page” option in “Front page displays”.
    3. Then in the same section, select any page you want to display as the front page from the drop down in “Front Page” ( In demo “About Catch Themes” is assigned as front page ) and select the “blog” page from drop down in “Posts Page”.
    4. Click on “Save & Publish” button.
    5. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options”.
    6 Select “Show Excerpt (Thumbnail Featured Image)” option from “Archive Content Layout” dropdown.
    7. Click “Save & Publish”.

    Regards,
    Mahesh

    in reply to: Removing grey lines between footer widget and posts #82375
    Mahesh
    Participant

    Hi @adunning,

    Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    .site-content article {
        border: none;
    }

    Regards,
    Mahesh

    in reply to: Mobile Site: Site Title Padding #82374
    Mahesh
    Participant

    Hi @andrewf90,

    No problem, its done.

    Regards,
    Mahesh

    in reply to: Different page title colors? #82372
    Mahesh
    Participant

    Hi @effess,

    Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following styles:

    .image-attachment .entry-container .entry-header h1.entry-title {
        color: #26a4cd;
    }

    The above style will change all attachment page title to the same color specified as above, but if you want to have different color for different attachment page then you may need to specify ids or class.
    For example, to have specific color in “Ibiza Travel Pillow & Sleep Mask” attachment page only, add the following CSS.

    .image-attachment .post-2096 .entry-container .entry-header h1.entry-title {
        color: #00ff00;
    }

    Regards,
    Mahesh

    in reply to: Mobile Site: Primary Menu #82371
    Mahesh
    Participant

    Hi @andrewf90,

    I understand your problem, but this is beyond the theme scope. I would recommend you to hire a customizer.

    Regards,
    Mahesh

    in reply to: An idear for future development #82366
    Mahesh
    Participant

    Hi @knudkp,

    You can check the change log of your uploaded theme by going to “Theme Foder => changelog.txt” and for the Latest Version Theme available, you can check the logs HERE

    Regards,
    Mahesh

    in reply to: politcy privacy #82365
    Mahesh
    Participant

    Hi @marcodimi,

    Just checked your site, I think you’ve removed the code from the footer.
    For displaying the “Privacy Policy” in the footer please follow these steps.
    1. Copy the HTML code provided excluding the scripts and add it in “Dashboard=> Appearance=> Theme Options=> Footer Editor Options=> Footer Editor” box and click “Save”.
    2. Copy the scripts from the provided HTML and go to “Dashboard=> Appearance=> Theme Options=> WebMaster Tools=> Header and Footer Codes=> Code to display on Footer” box and paste it and click “Save”.
    3. Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS Options=> Custom CSS” box and add the following CSS and click “Save”.

    @media screen and ( min-width:961px )  {
        #site-generator .copyright {
            clear: none;
        }
        .iubenda-ibadge {
            float: left;
        }
    }

    Let me know if this solves your issue.

    Regards,
    Mahesh

    in reply to: cart page all content is not visible in the mobile view #82318
    Mahesh
    Participant

    Hi @Mattias,

    Sakin will answer this.

    Regards,
    Mahesh

    in reply to: An idear for future development #82317
    Mahesh
    Participant

    Hi @knudkp,

    For theme version, only change in style.css will change the version of the theme. I recommend you to upload the theme again using another FTP client such as FileZilla or use Catch Updater plugin to update the theme.

    Let me know, if the problem persists.

    Regards,
    Mahesh

    in reply to: Background Image and Background Scroll #82304
    Mahesh
    Participant

    Hi @matthewseanmclachlan,

    1. To move the slider up snug up with the menu bar
    Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    #page > header#branding {
        display: none;
    }

    2. To increase the space in between the posts, add following CSS:

    #main article.post {
    	margin-top: 40px;
    }
    
    #main article.post:first-child {
    	margin-top: 20px;
    }

    3. To drop shadow to the posts, add the following CSS:

    #main article.post {
    	-webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 1);
    	-moz-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 1);
    	box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 1);
    }

    Regards,
    Mahesh

Viewing 20 posts - 4,781 through 4,800 (of 4,916 total)