Atanas Yonkov
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Prespa] contact button linkHi Jose,
You can change the header button link or text via the theme customizer. To do that, go to Appearance => Customize => Header Options => Site Header and add your link in the field “Button Link”
Forum: Themes and Templates
In reply to: [Prespa] Search result page in low opacity@shiruiliang , can you try again? It is a bit hard to fix it as I cannot test with your data.
Forum: Themes and Templates
In reply to: [Prespa] Search result page in low opacityHi @shiruiliang, thank you for reporting this. I have released a new version. Let me know if it is now resolved (you need to update to version 1.4.1 and try in incognito mode).
Forum: Themes and Templates
In reply to: [Prespa] Featured Image not showing on the mobile phoneHi @halima00,
I guess you mean the Header Image, which you can show on the homepage or your featured image display is set to fullwidth header, which means it inherits the header image options.
There is a theme option to remove the background-attachment property that is responsible for the parallax effect but is also showing only the top part of the image before page scroll.
To do that, go to appearance => customize => header image and remove the check on Header Image Parallax option. You can also play around with the Header Background Position theme option for more control.
Finally, if you want to keep the parallax effect on desktop but get rid of it on mobile, you can use the following css code (add it in appearance => customize => additional css):
@media(max-width:40rem){ .header-image-wrapper { background-attachment: initial !important; } }
Forum: Themes and Templates
In reply to: [Newspiper] Site Title and Tag Line ColorHi @stinsonpilot,
There is an option to change this in the premium version of the theme.
Forum: Themes and Templates
In reply to: [Newspiper] How to define Category ImageHello @roamfree,
You can define an image for the featured categories in the homepage via the theme customizer but the category archive page does not support a featured image. If you really need to have a featured image in a category archives page, you need to do the following:
1. create a child theme and add a category.php file.
2. Copy the contents of archive.php from the Newspiper theme (the parent theme) and paste it in category.php of the child theme.
2. Install, activate and configure the Categories Images plugin.
Please note: You should never modify the parent theme files directly, always use a child theme for that, otherwise your changes will be gone with the next theme update.
Hope this helps
- This reply was modified 10 months, 2 weeks ago by Atanas Yonkov.
Hi @smakazmi15 , I eventually switched to another plugin and it fixed the issue for me.
Nevermind, the plugin was installed and activated on the server, that is why it was not in the list of recommended plugins.
Forum: Themes and Templates
In reply to: [Pliska] website crashes if php updatedForum: Plugins
In reply to: [AI Engine] Getting Error when Trying to Generate an ArticleHi @tigroumeow ,
Thank you for your reply. I inspected the browser console and there is the following error:
Additionally, I checked the error log and here is the info:
[03-Apr-2023 21:30:16 UTC] PHP Fatal error: Uncaught Error: Call to undefined function Rahul900day\Gpt3Encoder\mb_convert_encoding() in /var/www/html/wordpress/wp-content/plugins/ai-engine/vendor/rahul900day/gpt-3-encoder/src/Encoder.php:34 Stack trace: #0 /var/www/html/wordpress/wp-content/plugins/ai-engine/vendor/rahul900day/gpt-3-encoder/src/Encoder.php(16): Rahul900day\Gpt3Encoder\Encoder::stringToBytes() #1 /var/www/html/wordpress/wp-content/plugins/ai-engine/classes/querytext.php(47): Rahul900day\Gpt3Encoder\Encoder::encode() #2 /var/www/html/wordpress/wp-content/plugins/ai-engine/classes/querytext.php(75): Meow_MWAI_QueryText->estimateTokens() #3 /var/www/html/wordpress/wp-content/plugins/ai-engine/classes/ai.php(188): Meow_MWAI_QueryText->checkFix() #4 /var/www/html/wordpress/wp-content/plugins/ai-engine/classes/rest.php(213): Meow_MWAI_AI->run() #5 /var/www/html/wordpress/wp-includes/rest-api/class-wp-rest-server.php(1181): Meow_MWAI_Rest->make_completions() #6 /var/www/html/wordpress/wp-includes/rest-api/class-wp-rest-server.php(1028): WP_RES in /var/www/html/wordpress/wp-content/plugins/ai-engine/vendor/rahul900day/gpt-3-encoder/src/Encoder.php on line 34
Forum: Themes and Templates
In reply to: [Pliska] Tablet search iconI am glad it helped!
Forum: Plugins
In reply to: [Simple Tour Guide] Exclude a roleYes, it should be possible. I am currently working on a pro version of the plugin and I will consider adding this option there. In the meantime, if you are comfortable with a custom solution, you can check this article and use the classes to show/hide the steps based on the body class.
Forum: Plugins
In reply to: [Simple Tour Guide] Change position to TopHi @pacoumamou ,
Yes, this should be possible. I am working on a pro version of this plugin that will have more options and customizations. I will consider adding this feature.
Forum: Themes and Templates
In reply to: [Pliska] Tablet search iconHi @iguanamom ,
Have you added a menu item recently? The menu items go on the next line when they can no longer fit the screen. You can adjust this with a few lines of css. Add this to appearance => customize => additional css:
@media only screen and (max-width: 840px) and (min-width: 600px) { .main-navigation { width: 80% !important; padding-left: 0 !important; } .site-branding { width: 20% !important; } }
Hope this helps
Forum: Plugins
In reply to: [Simple Tour Guide] Disable auto scrollto after clicking NextHello,
In this case, it would make sense not to assign value to the Step Position. If no selector was assigned to the step, it would appear in the middle of the screen.