Forum Replies Created

Viewing 20 posts - 4,061 through 4,080 (of 4,908 total)
  • Author
    Posts
  • in reply to: facebook in featured post in home page #88172
    Mahesh
    Participant

    @isabella: I guess you’ve followed all the instructions above ( i.e. creating child theme, putting codes in functions.php etc ). After installing and activating the mentioned plugin, go to Admin Dashboard, you’ll see Facebook Page Plugin Shortcode Generator section at the bottom. Fill up the form and a shortcode will be generated. Copy the generate shortcode and go to “Dashboard=> Appearance=> Customize=> Homepage Settings=> Homepage Featured Content Options”, then page it in Content within Featured Content # and click save. Then go to front page, you’ll see the facebook page div in featured content section.

    Regards,
    Mahesh

    in reply to: Change Title 2 #88169
    Mahesh
    Participant

    @susannagable: You’ve not put the .site-description in the CSS, all of the code is required or it won’t work. Please use the following intead.

    .site-description {
        font-family: Cantarell;
        font-size: 20px;
        font-style: normal;
    }

    Note: You can increase or decrease the font-size as per your requirement.
    Hope this helps.

    Regards,
    Mahesh

    in reply to: facebook in featured post in home page #88167
    Mahesh
    Participant

    @isabella: If you want to display certain facebook page in your site (in featured content) as you’ve mentioned earlier you can use this plugin and you have to follow the above steps.

    Regards,
    Mahesh

    in reply to: White space above header image #88166
    Mahesh
    Participant

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

    .no-sidebar #primary {
      width: 100%;
    }

    Regards,
    Mahesh

    in reply to: facebook in featured post in home page #88158
    Mahesh
    Participant

    @isabella: Sorry, I thought you were trying to use the Facebook Page Plugin for WordPress, but you are trying to use the facebook’s own page plugin. This the not possible with the above method. You’ll need to hire a customizer for this.

    Regards,
    Mahesh

    in reply to: Change Title 2 #88155
    Mahesh
    Participant

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

    .site-description {
        font-family: Arial;
        font-size: 14px;
    }

    Regards,
    Mahesh

    in reply to: White space above header image #88153
    Mahesh
    Participant

    @catch1947: Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the above CSS.

    Regards,
    Mahesh

    in reply to: Shortcode – Catch Kathmandu #88146
    Mahesh
    Participant

    @boboxx: Do you mean you are seeking for shortcode to display form? If so, I recommend you to use plugins such as Contact Form 7 or so. Shortcode falls beyond theme’s territory.

    Regards,
    Mahesh

    in reply to: Sale question catch flames pro #88145
    Mahesh
    Participant

    @centaine: Thank you for your appreciation and thank you for choosing Pro version. Have a nice day!

    Regards,
    Mahesh

    in reply to: Customization not working #88144
    Mahesh
    Participant

    @dara-w: Glad to know you’ve found the solution. Have a nice day!

    Regards,
    Mahesh

    in reply to: White space above header image #88140
    Mahesh
    Participant

    @markvanessen86: Glad to know you’ve solved your problem yourself. Have a nice day.


    @catch1947
    : Do you mean to remove the white space above header image? You seem to have hidden site title and tagline. Please use the following CSS:

    #header-content {
        display: none;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Image captions and footer background #88139
    Mahesh
    Participant

    @catwingz: Please post in your site url so that I can help you.

    Regards,
    Mahesh

    in reply to: Catch Web Tools for Child Theme creation #88138
    Mahesh
    Participant

    @jonny: Thank you for using Catch Web Tools Plugin. It depends on your requirement whether to create child theme or not. If you can achieve the change with change in style (CSS), and Custom CSS box is preferred. But if you choose to override the function, change structure or other customizations, you’ll need to create child theme.
    All of our theme also provides the Custom CSS option. Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS”.

    Regards,
    Mahesh

    in reply to: Change Title 2 #88137
    Mahesh
    Participant

    @susannagable: Thank you for your appreciation. Please post in your site url.

    Regards,
    Mahesh

    in reply to: How to Format the Text on Featured Post Slider? #88136
    Mahesh
    Participant

    @tdejarnett: Please post in your site url and you show the problem.

    Regards,
    Mahesh

    in reply to: How do I put site owner picture at top right? #88133
    Mahesh
    Participant

    @kgnally: Thank you for using Catch Everest Pro. Yes, this can be achieved through widget in Catch Everest Pro. Go to “Dashboard=> Appearance=> Widget” Drag a Text widget to Header Right Sidebar and place the following code into the text widget.
    <img src="url-to-your-image" width="100" />
    Note: please replace url-to-your-image with your image’s url.
    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Header Right Section” and make sure that Check to Disable Header Right Section is unchecked.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Full Frame Old Version #88130
    Mahesh
    Participant

    @mttd: Have you customized the theme? Do you mean you lost your theme’s customization code or theme settings (Theme setting are not lost with updates)? Please post in your site url. You can download Full Frame version 1.0 from the link below but you custom change cannot be retained.
    https://downloads.wordpress.org/theme/full-frame.1.0.zip
    The Full Frame version 2.2 is out and you are still using 1.0.
    If you want to customize the theme, it is strongly recommended to use child theme, as during update, you’ll lose all your changes.

    Regards,
    Mahesh

    in reply to: url issue #88129
    Mahesh
    Participant

    @creativesigns:
    1. Url Problem – This issue may occur as you have signage url is already reserved may be in draft or something. When I visit your site with signage i.e. http://www.creativesigns.uk.com/signage, it redirects to homepage. If the signage was not available, it should have given a 404 not found error.

    2. Remove / at the end
    You can remove the trailing slash globally by going to “Settings > Permalinks”, and set your own custom structure without the trailingslash.

    For the generated links inside your theme you could try the following – this will remove trailingslashes for links that have been generated by the the_permalink() function for posts and pages.

    function permalink_untrailingslashit($link) {
    	return untrailingslashit($link);
    }
    add_filter('page_link', 'permalink_untrailingslashit');
    add_filter('post_type_link', 'permalink_untrailingslashit');

    Note: Please create child theme for this. You can find more details on creating child theme HERE.

    3. Multipe h1
    Only one H1 per page is old. It was only valid for HTML4.
    In HTML5, you can have more then one H1 tag. That was issue only when you use HTML4 tags. In HTML5, H1 tag per article tag is good for SEO and we have carefully designed H1 tags with special attention on header tag and headings
    Catch Evolution Pro theme is build in HTML5, CSS3 and Responsive design. So, H1 is better for SEO then H2.
    You can also check this Video http://www.youtube.com/watch?v=GIn5qJKU8VM by Google software engineer Matt Cutts, who clearly states that you can use multiple H1 but don’t over do it. Also use h1 specific to heading and header tags.
    You can also check this article URL http://html5doctor.com/html5-seo-search-engine-optimisation/
    But if you really want to change it, you can change it by building child theme and editing it.

    Regards,
    Mahesh

    in reply to: Problem tanslating breadcrumbs (BUG!) #88127
    Mahesh
    Participant

    @raufaser: Checked with the theme and the strings that you’ve mentioned above are translatable and is translating fine with po/mo files created with poEdit.
    Yes, you can send the translation file to us, it would be a great help.
    Thank you for your help.

    Regards,
    Mahesh

    in reply to: Problems with Featured Slider on Admin Site #88125
    Mahesh
    Participant

    @jdc: I checked the theme as per your testing. But didn’t run to any problem. It worked fine. As you’ve mentioned, that your production site is working fine but you are getting problem in your test site only. I navigate to the Featured Slider in customizer and can upload the image again normally. I guess there is a problem in your WordPress installation on your test site. I recommend you to install a fresh copy of the WordPress and test the theme again.
    The login in “preview area” may be also caused by the above issue.
    Let me know if the problem persist.

    Regards,
    Mahesh

Viewing 20 posts - 4,061 through 4,080 (of 4,908 total)