Asadiyan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: image description text colour, and post image justificationIn your admin panel,
go to Appearance > Customize > Additional CSS
copy this code
h1, h2, h3, h4, h5, h6, p, div{color:white !important}
and click on publish buttonForum: Fixing WordPress
In reply to: image description text colour, and post image justificationHi @jclipperton
Add this code to your style
h1, h2, h3, h4, h5, h6, p, div{color:white !important}
After that, be sure to clear the cacheForum: Fixing WordPress
In reply to: Image getting crawled even if it’s deletedHi
Be sure to clear the cache after disabling
and check preload tab on wp-rocket pluginForum: Fixing WordPress
In reply to: Uncode Theme (Generating title of content of widget areas)You are welcome
Forum: Fixing WordPress
In reply to: Changing image for another siteHi @dunvar1
It may be best to use an iframe to display the image on your site
https://stackoverflow.com/a/3272151Forum: Fixing WordPress
In reply to: Uncode Theme (Generating title of content of widget areas)Hi @cookjoinery
use this for title
Or hide it via css
.widget-container .widget-title{display: none !important;}
Forum: Fixing WordPress
In reply to: FAQ block: Rank Math vs Ultimate Addons for GutenbergHi @droyed
“Turn Rank Math FAQ Block to Accordion” is a small plugin and does not cause any problems
I think it is better to use Math RankForum: Fixing WordPress
In reply to: anchor issuesHi @tommedlin
I did not see any problem
Clear the cache and check with another browserForum: Fixing WordPress
In reply to: Appearance > Customize opens wrong placeHi @aberow
Did you modify the new address in the database?
After moving the site to a new address, the address in the database must be corrected
You also need to update the permalinks settings once (not change just update)Forum: Fixing WordPress
In reply to: Problems with accordions and togglesHi @rawairocks
I checked your site
JQuery script loads defered
You’re probably using an optimization plugin, remove jQuery from the optimization listForum: Reviews
In reply to: [HGW Whiteboard] ????? ?????? ??? ?????? ???????? ?? ???
Forum: Themes and Templates
In reply to: [HGW Whiteboard] ???? ?????? ???? ???? ?? ????? ???????
?????
???? ??? ?? ?? ?? ???? ?????? ????? ????#site-header .brand .logo{ width: 30%; max-width: 40px; padding: 5px 0 }
??????? ???? ?? ?? ???? ? ?????? ???? ? ?? ?? ?? ?????? ?? ?? ???
css ?????
????? ????? ????#site-header .brand .logo{ width: 50%; max-width: 200px; }
????? ?? ???? ??? ???? ??? ????? ???? ?????? ???? ????? ?? ???? ????? ????
Thanks for the reply.
Do you allow me to customize this plugin?
I would like to ask your permission first, because of your copyright and your effortsThere is another problem
I use the following code to get the targetID
$(document).on('click', 'a[href^="#"]', function(e) { var id = $(this).attr('href'); var $id = $(id); if ($id.length === 0) { return; } e.preventDefault(); var pos = $id.offset().top - 50 ; $('body, html').animate({scrollTop: pos}); });
But if the
href
andtarget id
is Persian, it will not work anymore
It may be best to set a condition that the number be used for the element if it were not English letters
somethings like<a href="toc-1">?????</a> <a href="toc-2">?????</a> <h2 id="toc-1">?????<h2> <h2 id="toc-2">?????<h2>
Of course, this is a suggestion
And maybe adding smooth scroll toID
will help make the plugin more advanced- This reply was modified 4 years, 1 month ago by Asadiyan.
Thanks for your prompt reply
I was thinking of making changes to the plugin, which fortunately you did well
This issue was resolved with the update
thank you