Forum Replies Created

Viewing 20 posts - 3,321 through 3,340 (of 4,908 total)
  • Author
    Posts
  • in reply to: Can not update theme through Catch Updater plugin #94838
    Mahesh
    Participant

    @pixelwarrior: Seems the issue is caused because of the server. You’ll have to manually update the theme through FTP. Navigate to the themes folder of the server with FTP and upload and replace the whole folder and its content once uploading finishes your theme will be updated.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Google Maps API Key #94836
    Mahesh
    Participant

    @gdyeacu: Seems like there is some error while generating code. I generated the code again and got it working.
    <script src='https://maps.googleapis.com/maps/api/js?v=3.exp'></script><div style='overflow:hidden;height:440px;width:700px;'><div id='gmap_canvas' style='height:440px;width:700px;'></div><div><small><a href="http://embedgooglemaps.com"> embed google maps </a></small></div><div><small><a href="https://termsandcondiitionssample.com">terms and conditions generator</a></small></div><style>#gmap_canvas img{max-width:none!important;background:none!important}</style></div><script type='text/javascript'>function init_map(){var myOptions = {zoom:10,center:new google.maps.LatLng(51.58250734077006,-0.0027888175781098923),mapTypeId: google.maps.MapTypeId.ROADMAP};map = new google.maps.Map(document.getElementById('gmap_canvas'), myOptions);marker = new google.maps.Marker({map: map,position: new google.maps.LatLng(51.58250734077006,-0.0027888175781098923)});infowindow = new google.maps.InfoWindow({content:'<strong>Title</strong><br>Belvoir House, Belvoir Road, LE67 3PN<br>'});google.maps.event.addListener(marker, 'click', function(){infowindow.open(map,marker);});infowindow.open(map,marker);}google.maps.event.addDomListener(window, 'load', init_map);</script>
    Where to put the code depends on where you want it. For example if you want the map on the sidebar, you can use text widget, paste all the code above in it.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Moving site title, logo and tagline #94835
    Mahesh
    Participant

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

    #site-details {
        left: -100px;
        position: relative;
    }
    
    #site-logo {
        left: -50px;
    }

    Regards,
    Mahesh

    in reply to: Slider Image #94834
    Mahesh
    Participant

    @sheilalowe: You mean you want to have different image in the slider? If so go to Dashboard=> Appearance=> Customize=> Featured Slider then select your desired image in Featured Slide # option.
    Let me know if any problem.

    Regards,
    Mahesh

    Mahesh
    Participant

    @trancid: Catch Responsive theme has some limitations. In Featured Content, you have two options, Demo Featured Content and Featured Page Content. You cannot edit the link in neither of the options. Catch Responsive Pro comes with some additional features, Featured Image Content is what you need. With this option, you can have custom featured content and you can link it to your desired page or section of the page.
    I recommend you to upgrade to Pro version.
    Let me know if you have any questions.

    Regards,
    Mahesh

    in reply to: Button color and sidebar #94769
    Mahesh
    Participant

    @naksnaks: Thank you for using Chicago Pro theme. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
    * Change to color of the “submit” button in a form

    input.wpcf7-submit[type="submit"] {
        background-color: #1e73be;
    }

    Note: Replace the hex in the above code to your desired color.

    * Add some padding to the side bar

    .sidebar-primary {
        padding: 0 10px;
    }

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #94744
    Mahesh
    Participant

    @rflores: After activating the plugin, go to Dashboard=> Appearance=> Widgets and drag the Twitter Timeline widget to your desired widget area. Here is the image of how it looks in the link below, hope this helps. Let me know if any problem.
    http://goo.gl/IBo4R1

    Regards,
    Mahesh

    in reply to: Can not update theme through Catch Updater plugin #94715
    Mahesh
    Participant

    @pixelwarrior: Using Catch Updater Plugin should not give such error. Please check the tutorial video for Catch Updater Plugin in the link below. Hope this helps.
    Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Header is not at the top. #94714
    Mahesh
    Participant

    @scnelson1: This is the default structure of the theme. If you want to header image to display at the top before Featured Slider, you’ll have to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    add_action( 'init', 'fullframe_child_move_header_image_before_slider' );
    function fullframe_child_move_header_image_before_slider() {
    	remove_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 20 );
    	remove_action( 'fullframe_before_content', 'fullframe_featured_slider', 10 );
    	add_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 10 );
    	add_action( 'fullframe_before_content', 'fullframe_featured_slider', 20 );
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Header Slider Images Not Working #94712
    Mahesh
    Participant

    @redlillies: Seems the Jetpack’s slideshow is causing the issue. Please contact Jetpack support for this issue.
    And for displaying slider image apart from demo sliders, Go to Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Options and select Featured Page Slider and select the pages you want to display as slider.
    Note: Please make sure that all the page selected for Featured Page Slider has Featured Image.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Thumbnail Images on Blog Page #94711
    Mahesh
    Participant

    @bmtt: This Feature is already available in Pro version, I recommend you to upgrade to Pro. If you decide to have it in the Free version, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then override the function catchresponsive_archive_content_image.
    Hope this helps.

    Regards,
    Mahesh

    in reply to: Search function on navigation bar #94710
    Mahesh
    Participant

    @bmtt:
    1. Turn off search function in the navigation bar:
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .sidebar.sidebar-header-right.widget-area {
        display: none;
    }

    2. If I decided to keep the search function on the navigation bar, is there any way to get this to work on the responsive mobile view:
    This is working fine in mobile view.

    Let me know if any problem. And please post in your site URL.

    Regards,
    Mahesh

    in reply to: Pictures in Post #94709
    Mahesh
    Participant

    @t-dubbis: If you mean to remove the border color and caption background, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .wp-caption {
        background: none;
        border: none;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Where can I download Catch Responsive Pro #94708
    Mahesh
    Participant

    @oleymedia: Sorry for the trouble. This is a sales related issue, tech team helps with the issue related to programming/coding. The sales team will help you for sure. If you have paid for the theme, you’ll definitely get it. Please contact the sales team.

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #94707
    Mahesh
    Participant

    @rflores: You are using Jetpack’s Twitter Timeline right? In the widget options there is an option to limit the twitter posts, put 3 in # of Tweets Shown in Twitter Timeline widget option.

    Regards,
    Mahesh

    in reply to: Non Responsive – Suddenly stopped working! :( #94706
    Mahesh
    Participant

    @redlillies: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Contenu en vedette #94705
    Mahesh
    Participant

    @magicfinger: Go to Dashboard=> Appearance=> Customize=> Featured Content and change content to “Bienvenue” in Headline for Featured Content.
    Note: This will not work if you’ve chose Demo Featured Content in Select Content Type. Please make sure you’ve selected Featured Page Content.
    If you do want to change the Featured Content to “Bienvenue” by default, you’ll have to modify fr_FR.po file and change line number 340 string msgstr "Contenu en vedette" to msgstr "Bienvenue"

    Regards,
    Mahesh

    in reply to: Home #94704
    Mahesh
    Participant

    @gdyeacu: Glad to know you’ve got what you wanted and all by yourself. Yes, sure we ready to help anytime. Have a nice day!

    Regards,
    Mahesh

    in reply to: Home #94637
    Mahesh
    Participant

    @gdyeacu: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Randomizing header images doesnt work #94636
    Mahesh
    Participant

    @taylor467: I check your site and only one header image displaying now. I tried the same with the setting on our sever and is working fine. Please make sure you’ve uploaded multiple image to the header image and click Randomize Uploaded Headers. Let me know if any problem.

    Regards,
    Mahesh

Viewing 20 posts - 3,321 through 3,340 (of 4,908 total)