Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @ethanssss
    Thanks for the screenshot, can you please provide more information about the plugin you are the using and what do you want to do specifically ?

    I am guessing you are trying to use Woocommerce plugin and creating a variable product, you would need to create attributes first to create more variations of it.

    Hello @johnelia44

    To prevent comments spam you can use spam protection plugins that are present and already provided by WordPress.

    1. Akismet or a honeypot plugin
    2. You can also add Google reCAPTCHA to you forms to prevent spam comments as well.

    Please let me know if there is anything specific that you need help with.

    Thankyou

    Hello @ethanssss

    Can you please provide more information regarding the problem you are facing as the link to the image seems to be broken.

    Thankyou

    Hello @seven640 ,

    Can you please share the url for the theme and the settings you are currently using on your website to show the posts on the homepage ?

    ThankYou

    Hello

    When you edit a post in the block editor, you can insert a Conent block:

    1. Edit your post.
    2. Click the + and search for Content.
    3. Place it at the the query loop block or inside the editor where you want to show.
    4. Update the post.

    if you still face some issues then –
    By default Kiosko’s loop is probably calling the_excerpt(). You’ll need to swap that out for the_content() in your theme files—ideally via a child theme so your changes aren’t lost on updates. A. Create a Child Theme (if you haven’t already)

    In wp-content/themes/ make a new folder, e.g. kiosko-child/.

    In it, create a style.css /* Theme Name: Kiosko Child Template: kiosko */

    Create an empty functions.php in the same folder.

    Copy & Edit the Loop File

    1. In the parent theme folder (kiosko/), find the template part that outputs the excerpt. Common filenames are:
      • content.php
      • template-parts/content.php
      • template-parts/content-archive.php
      • or even index.php / home.php
    2. Copy that file into the same relative path in your child theme (e.g. kiosko-child/template-parts/content.php).
    3. Open the copied file and look for something like <?php the_excerpt(); ?> Replace it with <?php the_content(); ?>
    4. Save and reload your blog page—the full post content should now appear instead of just the excerpt.

    Activate Kiosko Child under Appearance → Themes.

Viewing 5 replies - 1 through 5 (of 5 total)