Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'post'

Home / Forums / Search / Search Results for 'post'

Viewing 20 results - 19,881 through 19,900 (of 29,722 total)
  • Author
    Search Results
  • #93192

    Richard, Ben has right but I do stand to my recommendation. There are many issues with newsletters plugins, but make sure they are compatible with other plugins, do support SMTP, may provide easy option to design a form (or add least work with other ones, like Contact Form 7) and possibly support an onsite autoresponder. I made my research some time ago. Try it out! It cost you nothing to test KNEWS, it is just a plugin. Install it, go to the settings, and then create a dummy but real working newsletter. The worst it can happened is it does not work as you have hoped for. Again, install KNEWS, test it, and then go for other ones to compare against. This way, you learn what each newsletter plugin is can do. I have installed and tested hundreds of plugins over the time, more than 50 each month and know exactly what I’m doing in this field. Make notes of each specification, but be aware of what you need. Make also sure that the basic specs of a free plugin are enough to cover your needs but still may still gives you room to expand in the future.

    As for SMTP, go ONLY for the ‘Postman SMTP’. It is the best one for WP in the world. Install that plugin first, test it, and then continoue with your newsletter plugin!

    Rainer

    P.S. You can link to 3rd party newsletters from within WordPress, but I do prefer one that do everything within the own domain.

    In forum: Virtue Theme

    In reply to: Sitemap

    #93187

    Hey,
    1. You can use a plugin for that… I recommend yoast SEO.

    2. Depends, could be up to two weeks although it’s usually much quicker.

    3. SEO optimization.. Check out the yoast plugin and check out their tutorials on there site.

    Also some hints getting links to your site is be best thing you can do so posting on facebook and other social media as well as friends sites and public forums.

    Ben

    #93172

    Please can you post a link and clarify what version of the theme you’re using along with woocommerce.
    Ben

    #93156

    Hey,
    In your theme options > product settings. “Show the Title in post” is that on?

    Ben

    #93154

    You can also do this:

    [blog_posts items="8" orderby="date" type="grid" columns="one"]

    Ben

    In forum: Virtue Theme

    In reply to: CSS Buttons

    #93147

    scrap last post how can I make the text color white?

    Richard

    In forum: Virtue Theme

    In reply to: Virtue Theme Questions

    #93133

    1. Theme options > shop settings.
    2. I think you’re wanting this css:

    .contentclass {
        padding-top: 0;
    }
    .kt-full-slider-container {
        margin-top: 0;
    }

    3. In your apperance > menus you can add product categories directly to the menu. If you don’t see that option just click “screen options” in the top right corner.
    4. It’s just that your footer background is the same as your primary color.. You can add this to make the hover white:

    .footerclass a:hover {
        color: white;
    }
    

    5. You can add this css:

    .sliderclass {
        padding-bottom: 0;
    }

    6. You can use this css:

    .home-iconmenu a:hover h4, .home-iconmenu a:hover i, .home-iconmenu a:hover p, .home-iconmenu .home-icon-item:hover h4, .home-iconmenu .home-icon-item:hover i, .home-iconmenu .home-icon-item:hover p {
        color: black;
    }
    .home-iconmenu a:hover, .home-iconmenu .home-icon-item:hover {
        background: transparent !important;
    }
    

    7. In your theme options > topbar settings do you have the widget area enabled?
    8. theme options > basic styling. “Sitewide Gray Fonts”.
    9. I can’t recreate on any browser so can you tell me Anything specific about creating this? can you test with your browser and set up on the demo site?
    http://themes.kadencethemes.com/virtue-premium/shop/
    10. There is no default for private, your responsible to check that box.
    11. we don’t post private replies unless there is some specific reason for it.

    Ben

    #93122

    ok, I can tell from the code this page is showing as if you made it the post page: http://www.magicalseeds.cl/blog/

    Which is what I’m telling you not to do.

    So if you can see in the settings > reading that it’s not that way then you may have caching? Are you using a caching plugin?

    Ben

    #93116

    Hi Hannah,

    Hope all’s good with you guys.

    I have a couple more questions. On the aforementioned box titles, I would like to change the opacity of the block and the colour of the headings. Is there any custom CSS for this I wonder?

    Then another question. When I insert a picture into a post or page ranged left with text wrap, the image doesn’t quite line up with the top on the text and the left hand edge. I’m guessing this is something to do with cell padding but not sure where I can fix this?

    Best wishes,
    Paul

    In forum: Pinnacle Theme

    In reply to: hide page banner

    #93111

    Sure. If you post a link to that page I can help with the css.

    Hannah

    #93104

    Hey Greg,
    Do you mind posting a link?
    Thanks,
    Hannah

    In forum: Virtue Theme

    In reply to: Virtue Theme Questions

    #93097
    This reply has been marked as private.
    #93096

    Hi Pamela,
    Try using this shortcode instead: [kad_blog orderby=date items=8 fullpost=false]
    Does that work for you?

    Hannah

    #93086

    Hi,

    Any menu items I add are not saving and this error shows:

    You are approaching the post variable limit imposed by your server configuration. Exceeding this limit may automatically delete menu items when you save. Please increase your max_input_vars directive in php.ini.

    To change the max_input_vars do I need to create a child theme to add a new php.ini?

    Many thanks

    #93080

    Hi Hannah,

    That is done in WP post styling, at the homepage.
    See below..

    img {
    -webkit-filter: grayscale(100%); /* For Webkit browsers */
    -webkit-transition: .5s ease-in-out; /* For Webkit browsers */
    -moz-filter: grayscale(100%); /* For Firefox */
    -moz-transition: .5s ease-in-out; /* For FireFox */
    -o-filter: grayscale(100%);
    -o-transition: .5s ease-in-out;
    }

    img:hover {
    -webkit-filter: grayscale(00%); /* For Webkit browsers */
    -webkit-transition: .5s ease-in-out; /* For Webkit browsers */
    -moz-filter: grayscale(00%); /* For Firefox */
    -moz-transition: .5s ease-in-out; /* For Firefox */
    -o-filter: grayscale(000%);
    -o-transition: .5s ease-in-out;
    }

    .portfolio_item .portfoliolink {
    ms-filter: “alpha(Opacity=80)”;
    filter: alpha(opacity=80);
    -moz-opacity: .8;
    -khtml-opacity: .8;
    opacity: .8;
    }

    .portfolio_item:hover .portfoliolink {
    ms-filter: “alpha(Opacity=100)”;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    }

    regards,
    Bert

    #93079

    That was a genius solution, but how can I now get them all in one column only. I tried this:
    [blog_posts items=”8″ orderby=”date” type=”grid” columns=”1″], but it is still in two columns.

    Regards,
    Pamela

    In forum: Pinnacle Theme

    Topic: Boxed layout

    #93069

    I would like to use a boxed layout or at leat a grey framing on the content pages including the home page of http://185.123.99.153/~frank/

    I like how it looks on blog posts grey background framing the content http://185.123.99.153/~frank/blog/

    How do I replicate this for pages such as the home page please?

    In forum: Virtue Theme

    In reply to: Sprout Invoices

    #93056

    Hey,
    Ok here is a workaround:

    Use a child theme (found here: https://www.kadencewp.com/child-themes/)
    add this to the functions.php file of your child theme:

    function kt_child_setup() {
            add_filter('template_include', 'kt_sa_invoice_override', 20);
              function kt_sa_invoice_override($template) {
                $cpt = get_post_type();
                if ($cpt == 'sa_invoice') {
                  remove_filter('template_include', array('Kadence_Wrapping', 'wrap'), 101);
                }
                return $template;
            }
    }
    
    add_action('init', 'kt_child_setup');

    Ben

    #93052

    Hi guys I seem to have the same issue. In the theme settings I have set it to “Blog Post Defaults Image” image and landscape image but I still don’t see my featured image in my blogs. Can you please help me?

    In forum: Virtue Theme

    In reply to: Virtue Theme Questions

    #93045
    This reply has been marked as private.
Viewing 20 results - 19,881 through 19,900 (of 29,722 total)