Forum Replies Created

Viewing 20 posts - 2,841 through 2,860 (of 3,114 total)
  • Author
    Posts
  • in reply to: news feed #874
    Hash
    Keymaster

    I think the plugin that i mentioned can do that as well. It would be better if you query with the plugin developer so that they can give you a clear view of what you can do and what you can not.

    in reply to: 'blog' page and 'contact' page #873
    Hash
    Keymaster

    Hi,

    Here is the process to create the blog page https://hashthemes.com/support/topic/unable-to-display-square-features-after-setting-static-page/

    and to create the contact page, you need to use contact form 7 plugin.

    Contact Form 7

    in reply to: Image Size #872
    Hash
    Keymaster

    HI,

    You need to edit the code for it. Here is the process.

    In the function.php file in line number 28
    add_image_size( ‘square-blog-thumb’, 800, 420, true );
    change the value of 800 and 420. 800 corresponds to width and 420 to height.

    Once you change the value. Regenerate the thumbnail using Regenerate thumbnail plugin.

    https://themes.trac.wordpress.org/browser/square/1.3.2/functions.php

    in reply to: How to display the posts in a separate page #867
    Hash
    Keymaster

    HI,

    I did not understand the 1st part of your question.

    Here is the answer for the 2nd part of your question on how to disable comments.

    How to remove the WordPress comments box from pages

    in reply to: Contact Form not working #863
    Hash
    Keymaster

    It seems much like problem with the plugin so you need to contact the plugin developer. In the mean time, you can leave your website url here so that we can check for the issue.

    You can even you contact form 7 plugin which works good with any theme.

    in reply to: news feed #856
    Hash
    Keymaster

    I think this the the plugin that you are looking for

    in reply to: There is a way to add more than 4 team members? #855
    Hash
    Keymaster

    Sorry, the theme only allows to add 4 team member. However we add more team member by customizing the theme for paid support if you want.

    in reply to: Edit text Read more ? #854
    Hash
    Keymaster

    Hi,

    Add the below php code at the end of the function.php file or use some plugin that allows to add custom PHP code

    add_filter( 'gettext', 'change_readmore_text', 20, 3 );
    
    function change_readmore_text( $translated_text, $text, $domain ) {
        switch ( $translated_text ) {
        case 'Read More':
        $translated_text = __( 'Read More Translation', 'total' );
        break;    
        }
        return $translated_text;
    }

    change Read More Translation to your text

    in reply to: Page Header #832
    Hash
    Keymaster

    Add the CSS below using some custom CSS plugin to fix the margin issue.

    I think this should have been a simple task for the one who can change the theme color. Any way i have provided the CSS below

    body:not(.home) #ht-content{margin-top:50px;}

    PS: It would have been good if you had not change the footer credit

    in reply to: New button #831
    Hash
    Keymaster

    Sorry, the theme only allows you to add 2 Call to Action button.

    We will have to customize the theme to add this feature. If you really require the third button, you can ask for paid customization which would only cost $15

    in reply to: captioning About Page Stack Images #830
    Hash
    Keymaster

    Sorry, there is no option for it. It will require additional coding.

    in reply to: Page Header #826
    Hash
    Keymaster

    Can you please mention your website url so that we can give you accurate solution rather than possibles one.

    in reply to: How to make posts layout wider #825
    Hash
    Keymaster

    HI,

    There is no option to make the archive page wider. You can only change the layout for the post and pages only.

    in reply to: Make Slider on Homepage SMALLER? #819
    Hash
    Keymaster

    To reduce the size of the slider you need to crop your images to smaller height. In this way you can decrease the slider height.

    And there is no option to enable the slider in other pages. We will modify the code to add this option.

    in reply to: Slider won't work? #818
    Hash
    Keymaster

    Great to know that our old thread helped you to fix the problem.

    in reply to: Menu has moved? #817
    Hash
    Keymaster

    Adding more menu items will cause the additional menu to move in next line. There is not solution for it.

    You need to arrange the menu items in sub menu so that there aren’t more menu items.

    I see you have increased the container width which is also a good technique to get more menu items in a single line.

    Additionally use the below css to decrease the with of the logo and increase that of menu

    #sq-site-branding{width:20%}
    #sq-site-navigation{width:80%}
    in reply to: Disabling hard crop in woocommerce setting not possible #816
    Hash
    Keymaster

    Hi,

    You need to modify the code in order for the settings to work. You need to remove some code from inc/woo-functions.php file

    Remove the code
    add_action( ‘init’, ‘sq_update_woo_thumbnail’);
    in the line number 96

    Check this file for reference.

    Once you remove the code, the settings for the woocommerce cropping will work. But please make sure your use proper image size else it may break the design.

    in reply to: Page Header #815
    Hash
    Keymaster

    Hi,

    Sorry, there is no option to add the image in the page header. We need to customize the code for it. We can do it for paid customization if you want.

    To remove the page header entirely, here is the css code.

    .ht-main-header{display:none}

    in reply to: Adding Video to Home Page #804
    Hash
    Keymaster

    Hi,

    You can add the video in the About Us section. The right image can be replaced by the widget. You can add the embed code of the video in the widget to show your video.

    Also we do provide paid customization support if you want to add the video in any specific section of the website or even create a new video section.

    in reply to: Footer #803
    Hash
    Keymaster

    Yes, the footer is editable expect the one that contains the credit link.

    To edit the footer, go to Appearance -> Widget page

Viewing 20 posts - 2,841 through 2,860 (of 3,114 total)