Forum Replies Created

Viewing 15 posts - 1,291 through 1,305 (of 1,346 total)
  • Author
    Posts
  • in reply to: Kidpress and Classic Editor plugin #141193
    Psink
    Keymaster

    Hello @animus

    Thank you so much for your information. We really appreciate it. We will fix it within 24 hours. Please update the theme after we fix and release a new update.

    Regards,
    Psink

    in reply to: Hide author and category on Blog / Archive #141101
    Psink
    Keymaster

    Hello @BJBUNDY

    Thanks for your site URL. Yes, you can hide the date or make it unclickable. Here are a few lines of CSS code that may help you to hide or make it unclickable

    Css code to hide date

    #latest-post .posted-on, #must-read .posted-on, #blog .posted-on, #featured-post .posted-on{
        display: none;
    }

    Css code to make date unclickable

    #latest-post .posted-on, #must-read .posted-on, #blog .posted-on, #featured-post .posted-on{
         pointer-events: none;
         cursor: default;
    }

    Please follow my instruction to add the above CSS code to the theme.
    Go to Admin Panel >> Appearance >> Customize >> Additional Css, There paste the above CSS code then publish and refresh. You will get the changes

    For the third query, you need to hire a developer to make it compatible with the event calendar plugin.

    Hope the above CSS helps you out

    Regards,
    Psink

    in reply to: Hide author and category on Blog / Archive #141100
    Psink
    Keymaster

    Hello @BJBUNDY

    We are very willing to help you. But right now, I see there is no screenshot attached in your reply. Please don’t attach images in the comment itself, you can use screenshot extension like awesome screenshot to share screenshots URL.

    For the second query can you please point out in which parts of the design you want to change color.
    It would be easy to guide if you mention design parts that you want to adjust color.

    Regards,
    Psink

    in reply to: Shopall Pro Demo Import Issue #141064
    Psink
    Keymaster

    Hello @tanvir

    We contacted BlueHost support but it wasn’t much of help. The php execution time set from cPanel was not being applied or the main server php execution time is set low which was failing the demo import.
    We were able to use a manual demo importer. It was giving 500 server error reaching the execution time limit, but reloading the 500 error page multiple times imported the demo completely.

    Regards’
    Psink

    in reply to: Large images and large text posts #141039
    Psink
    Keymaster

    Hello @Sukron

    We apologize for getting late. Here is the css code as per your needs. Please add this code in Additional Css

    
    #primary article.hentry{
        Padding: 14px 20px;
        margin-button: 20px;
    }
    
    #primary article.hentry .entry-content p{
       font-size: 14px;
       margin-bottom:0px;
    }
    
    #primary article.hentry a.read-more:after {
       font-size: 13px;
    }
    
    #primary article.hentry a.read-more{
       font-size: 13px;
    }

    If you want to change css value. Please can change css value in the above codes as your requirement

    Hope this helps

    Regards,
    Psink

    in reply to: How to change the hompages slider #141035
    Psink
    Keymaster

    Hello @eli

    Thanks for your query. We would be happy to help you. To set up the homepage slider you can follow the theme instruction

    Here is the instruction to set up the slider
    https://themepalace.com/instructions/themes/travel-master-pro/#doc-main-slider-12

    Or you can follow the screen record
    https://www.awesomescreenshot.com/video/2138445?key=ceac24bbd57759198b7e7cdaa7488e9d

    Hope this helps

    Regards,
    Psink

    in reply to: Pull Quote line color #141033
    Psink
    Keymaster

    Hello @Natalie

    Thanks for your query. We would be happy to help you
    Can you please share your site URL. Once we get the site URL it will be easy to inspect the actual issue. And also please give us the page URL where that quote block exists.

    We will provide you a few Css codes that may help you to change the line color

    Regards,
    Psink

    in reply to: Unable to set Homepage #140982
    Psink
    Keymaster

    Hello @christina

    We are sorry to hear that you’re having trouble with setting up the homepage. We’d like to try and help get things sorted out.

    I would like to recommend you to follow theme instruction, there you will find everything related to theme settings

    Here is the link for the theme instructions
    https://themepalace.com/instructions/themes/musicsong-pro/#doc-how-to-set-homepage-setting-4

    and screen record for Hompage setting up
    https://www.awesomescreenshot.com/video/2123694?key=801d9ee7e42afcb19c081bebb49dcb3a

    If this does not help you to get things sorted out. Please let us know, we are always here to help you

    Regards,
    Psink

    in reply to: Footer Widget Categories #140931
    Psink
    Keymaster

    Hello @Brandon

    Actually, there is no option to select multiple categories in that widget. In the demo, we have not assigned any category, all the post that has been displayed are the first 3 latest posts. If you left the category empty then it will display the latest posts serially.

    Regards,
    Psink

    in reply to: Homepage Sortable #140888
    Psink
    Keymaster

    Hello @Mariusz

    Thank you for your information. It’s very appreciate to us. We will work on it and let you know when it’s done

    Thank you

    in reply to: Featured image odd problem.. #140884
    Psink
    Keymaster

    Hello @DANIEL

    I have recently visit your site. I see there all of images in category are slightly different size.

    Please add this Css code in Additional Css to make all images same size

    .blog-posts-wrapper .featured-image img {
        width: 100%;
        height: fit-content;
    }

    Hope this helps

    Regards
    Psink

    in reply to: Homepage Sortable #140883
    Psink
    Keymaster

    Hello @Mariusz

    I don’t why homepage sortable is not working on your side. I think something is missing. Can you please conform is your WordPress version is up to date. It should have to work because it is working well on our side

    Here is the screen record
    https://www.awesomescreenshot.com/video/2097053?key=3a026641300af02f9f53bc5ea71197b1

    Regards
    Psink

    in reply to: a few problems #140882
    Psink
    Keymaster

    Hello @KONUR ALP

    Add this code in Additional Css to hide ‘From The Blog’

    .archive-posts-wrapper .section-heading-wrapper {
        display: none;
    }

    This css will help you to place site title next to logo in mobile display

    @media screen and (max-width: 575px){
     .site-title{
    	font-size: 24px;
     }
    
     .site-branding{
    	display: block;
     }
    
     .site-identity{
        width: 47%;
        text-align: left;
        display: block !important;
        float: left;
        padding-left: 10px
     }
    
     img.custom-logo {
        max-width: -webkit-fill-available;
     }
     .custom-logo-link{
    	width: 45%;
    	float: left;
     }
     .wp-custom-logo {
    	    display: block;
     }
    }
    

    Add all these Css code in Additional Css

    Hope this helps

    I see there you have blocked inspect option. Please next time enable inspect it will be easy for us to inspect actual class and help you little quick

    Regards
    Psink

    in reply to: White background on productpage #140879
    Psink
    Keymaster

    Hello @Esther

    Try this Css Code

    .single-product div.product {
        background: #fff;
    }
    

    Please add this to Admin Panel >> Appearance >> Customize >> Additional Css, Here paste above Css code then published and refresh page. You will see the change

    Hope this helps

    Regards,
    Psink

    Psink
    Keymaster

    Hello @Melissa

    According to your explanation – you wants to add pdf url to button to make download available for every one.

    Try this it may help you. Here is the screen record on it
    https://www.awesomescreenshot.com/video/2094396?key=8362b2fa11f92e0a6cb2bba68c8cc9dd

    If it works please let us know

    Regards
    Psink

Viewing 15 posts - 1,291 through 1,305 (of 1,346 total)