Kushagra Goyal
Forum Replies Created
-
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.Forum: Fixing WordPress
In reply to: Malware Attack & Spam Comments Detected on WordPress DashboardHello @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.
ThankyouHello @ethanssss
Can you please provide more information regarding the problem you are facing as the link to the image seems to be broken.
ThankyouForum: Fixing WordPress
In reply to: Full post, not excerpt.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 ?
ThankYouForum: Fixing WordPress
In reply to: Full post, not excerpt.Hello
When you edit a post in the block editor, you can insert a Conent block:
- Edit your post.
- Click the + and search for Content.
- Place it at the the query loop block or inside the editor where you want to show.
- Update the post.
if you still face some issues then –
By default Kiosko’s loop is probably callingthe_excerpt(). You’ll need to swap that out forthe_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.phpin the same folder.Copy & Edit the Loop File
- In the parent theme folder (
kiosko/), find the template part that outputs the excerpt. Common filenames are:content.phptemplate-parts/content.phptemplate-parts/content-archive.php- or even
index.php/home.php
- Copy that file into the same relative path in your child theme (e.g.
kiosko-child/template-parts/content.php). - Open the copied file and look for something like
<?php the_excerpt(); ?>Replace it with<?php the_content(); ?> - Save and reload your blog page—the full post content should now appear instead of just the excerpt.
Activate Kiosko Child under Appearance → Themes.
- This reply was modified 1 year, 1 month ago by Kushagra Goyal.
- This reply was modified 1 year, 1 month ago by Kushagra Goyal.