Atanas Yonkov
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Estera] Estera Pro compatible with Monster Insights plugin?@jdembowski , you are right, I did not think about it this way. My only intention was to help, I did not realise I was doing something against this forum’s guidelines.
@valsbesp , you should follow the suggestions listed by @jdembowski. If the above-mentioned actions do not help, you should probably check once again the plugin documentation and ask help directly from the plugin authors. This theme is coded by using standard wordpress fuctions and it should work well with all well-coded plugins.Forum: Themes and Templates
In reply to: [Estera] copyrightHi @cgmt ,
Thank you for using Estera theme. This option is available in the pro version of the theme: https://nasiothemes.com/themes/estera/I would really prefer that you keep the credits, if you plan to use the free version of the theme only. If you really need to change them, this can be done via a child theme, by editing the footer.php file.
Please note: do not attempt to alter the theme files directly, as this will get overriden by the next theme update. I hope this helps!
Forum: Themes and Templates
In reply to: [Highstarter] Header image is not slidingI understand what you mean now. You want to enable the parallax effect on the header image. You can do that from the theme customizer => header options => parallax. If for some reason that does not work, try to add it via this custom css snippet:
.site-header .site-branding { background-attachment: fixed; }
I hope this helps.
Forum: Themes and Templates
In reply to: [Highstarter] Header image is not slidingHi @thomschuthof ,
Probably you are confusing this theme with another WordPress theme, written by me, Estera? Highstarter does not have a slider, you can only add a header image. If you really need a slider, you can use a plugin for that. However, please note that a slider can sometimes slow down the website’s performance. Unfortunately, I haven’t used a slider plugin before so I cannot really recommend something to you.
Forum: Themes and Templates
In reply to: [Highstarter] How to manage breadcrumb?Hey @cluwe,
I think you might be confusing “Page” with “Post”. In wordPress, pages do not have categories, posts do. If you create a Post (not Page), you should be able to achieve the desired result. Furhter reading on the topic: https://www.wpbeginner.com/glossary/category/
Forum: Themes and Templates
In reply to: [Highstarter] Footer links to new browser tabHey, @thomschuthof ,
You are welcome. I am happy that the above code solved the issue.
Forum: Plugins
In reply to: [Simple Custom CSS and JS] jQuery(document).ready not workingHi @diana_burduja ,
I am a theme author. WordPress does not load jQuery on frontend by default. It only loads it, if the theme / or a plugin has enqueued a jquery script, like so:
wp_enqueue_script( 'custom-js', get_template_directory_uri() . '/assets/js/custom.min.js', array( 'jquery' ),'',true);
More and more themes prefer to use vanilla js in their code, this means jQuery is not called on the website! Please check my theme Highstarter for reference (disable all active plugins, because any of them might be loading jQuery, then try adding jquery code via Simple Custom CSS and JS plugin). I have the same problem as @michalrama, jQuery code not working because jQuery is no defined.
You need to add a check in your plugin to enqueue jQuery automatically if the user uses it in the code snippet from your plugin.
jQuery(document).ready(function($) { //Code });
Please consider adding this to the plugin, this is really important because more and more themes do not use jQUery and a lot of non-tech users ask me for suppport because they cannot figure out why their jquery script does not work in my theme. I will also list this as a seperate thread. Cheers and take care!
- This reply was modified 4 years, 1 month ago by Atanas Yonkov.
- This reply was modified 4 years, 1 month ago by Atanas Yonkov.
- This reply was modified 4 years, 1 month ago by Atanas Yonkov.
Forum: Themes and Templates
In reply to: [Highstarter] How to manage breadcrumb?Hi @cluwe ,
Thank you for using the Highstarter theme. In order to show in the breadcrumb navigation “Home ? Asia ? Kerala”, you need to assign the post to category “Asia” and it should work. You can easily do that when you edit the post from the WordPress admin. I hope this helps.
- This reply was modified 4 years, 1 month ago by Atanas Yonkov.
Forum: Themes and Templates
In reply to: [Highstarter] Possible to force dark modeHi @plus8web ,
Thank you for using the Highstarter theme. Yes, you can only use the dark skin if you want. For this, you need to add the following php snippet to the site:
function highstarter_dark_skin_body_class ($classes){ return array_merge( $classes, array( 'dark-mode' ) ); } add_filter( 'body_class', 'highstarter_dark_skin_body_class');
This code adds ‘dark-mode’ class to the document body. You can use the Code Snippets plugin to add this snippet to your site. Then, what is left to do is to remove the dark mode switcher in the footer. For this, you can go to theme customizer => night mode and remove the tick from “Enable dark mode”. Cheers!
- This reply was modified 4 years, 1 month ago by Atanas Yonkov.
Forum: Themes and Templates
In reply to: [Estera] Header Title and Menu ButtonHi @bellamusing777 ,
Thank you for using this theme.
1. You can change site title text to regular by using this css snippet (paste it in appearance => customize => additional css tab): https://pastebin.com/YRYhhAtH
The fonts that are loaded are regular/thin for body and regular/bold for headings. Hope this helps.
2. You can change menu icon using following css in the additonal css tab: https://pastebin.com/sUaGY1SD Currently, there is no option in the theme to change headings font size, but it will be considered for a future release. Which headers exactly you would like to change?
P.S: Lets keep the conversation in this ticket. Thanks in advance!
- This reply was modified 4 years, 1 month ago by Atanas Yonkov.
- This reply was modified 4 years, 1 month ago by Atanas Yonkov.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Is it possible to save form programatically?Hi Harish,
I created a form with some custom css, saved it as xml file and try to import it to another website. However, strangely, the plugin css is not loaded the first time One Click Demo import runs on new WP installation and the form looks very ugly (everyting else gets exported, incl. custom css that I have added). The form appears as it should (plugin css gets loaded) only when I navigate to MC4WP => Form and click save changes: IMAGE
Before that, I can see the same html, however, form looks very different and it magically works when I click save button
Maybe you can try yourself with following html to run One Click Demo Import plugin (or probably WordPress Importer will do) to check if the form will look the same after the import (and before navigating to the form and pressing “save changes”:
<h2>Subscribe to our newsletter</h2> <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation. </p> <span> <input type="email" name="EMAIL" placeholder="Your email address" required /> </span> <span> <input type="submit" value="Sign up" /> </span>
- This reply was modified 4 years, 3 months ago by Atanas Yonkov.
- This reply was modified 4 years, 3 months ago by Atanas Yonkov.
- This reply was modified 4 years, 3 months ago by Atanas Yonkov.
- This reply was modified 4 years, 3 months ago by Atanas Yonkov.
Forum: Plugins
In reply to: [One Click Demo Import] Posts and Pages does not get importedHi Gregor,
When I open the auto-generated xml file from WordPress (Tools => Export), it does give a browser error (because of the empty first line). However, please note that, apparently, WordPress Imporer does not have issue with that and I am able to import it via that tool. I would suggest when you have time to re-check plugin logic and make it work (if possible) even with an empty line. I would expect that a lot of users might spend hours stumbling on this (like I did). Why does default WordPress export tool produces invalid xml – this is another issue, which is of course not this plugin’s scope.
Thank you for the GitHub issue, I commented there.
Take care and thank you for stepping in.
Forum: Plugins
In reply to: [One Click Demo Import] Posts and Pages does not get importedUpdate: I was able to import xml, .dat and .wie files on the newest WordPress version.
The problem was that the exported xml file from the default WordPress export tool was generated with an empty first line (probably issue on Windows machines) and this was obviously breaking One Click Demo Import (although WordPress importer did not have any issues importing the xml. @capuderg , you should probably think of a way how to strip first line from exported files.
Regarding WordPress version 5.2, I got Internal Error 500 with newest plugin version, you should probably update the plugin to provide some backward compatibility (since you also claim that newest plugin version supports it).
All in all, I am quite satisfied with this plugin but it took me so much time to figure it out. I hope you will have the time to fix the above-mentioned issues in a future release.
- This reply was modified 4 years, 3 months ago by Atanas Yonkov.
Forum: Plugins
In reply to: [Customizer Export/Import] Additional css in theme customizer breaks exportI managed to import the .dat file by removing the first empty line in the .dat file and putting everithing on one line (minifying css). However, no css get exported in the additional css tab.
Forum: Plugins
In reply to: [One Click Demo Import] Posts and Pages does not get importedThank you for fast reply! I tried with the Theme Unit test as well and this time I got Error: Internal Server Error (500) in WordPress dashboard (still no error info in log files). This is info from log file:
---Downloaded files--- The import files for: Demo Import 1 were successfully downloaded! Initial max execution time = 180 Files info: Site URL = https://localhost/wordpress5 Data file = E:\xampp\htdocs\wordpress\wordpress5/wp-content/themes/estera/import/themeunittestdata.wordpress.xml Widget file = not defined! Customizer file = not defined! Redux files: not defined!
I am using wordpress 5.2, php v. 7.1 and plugin newest version to imprort the xml since I would like to provide some backward compatibility for theme users.
Can you try to test yourself with the theme unit test and let me know?
- This reply was modified 4 years, 3 months ago by Atanas Yonkov.
- This reply was modified 4 years, 3 months ago by Atanas Yonkov.