Smit Rathod
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I can’t bold textIn classic editor and in Gutenberg editor the method is the same for formatting the text bold. you need to select the text and then click on bold.
thank you.
Forum: Fixing WordPress
In reply to: Downloadable Permalinkshi @ghostofheros, you need to add the download attribute in the anchor tag. I noticed there is no download attribute, so you need to add the download attribute in that anchor link by code or by “edit as HTML” option in the editor.
Thank you.
- This reply was modified 3 years, 1 month ago by Smit Rathod.
- This reply was modified 3 years, 1 month ago by Smit Rathod.
Forum: Fixing WordPress
In reply to: Disable or Redirect a PermalinkHi @angelinasw
Can you share the link of the page?
And you can disable the links from the code. Just remove the anchor tag in the code for the category text. I can guide you to change in code if you share the link of the page.
thank you
Forum: Fixing WordPress
In reply to: Template/ThemeHi @kylesteffic
Are you sure the astra theme is active? Because this never happens, but if you want to check then view the site and click customize, then in left sidebar settings menu of customization, it displays the active theme. So you can check there astra is really active or not?
Forum: Fixing WordPress
In reply to: Set title and body of new post using link paramshi @collimarco
Why do you want to implement like this? It’s not safe to provide all the post/page data in link arguments. But if you want to fetch the data dynamically from any post/custom post/page then you can. I can help you in that implementation.
Thank you.
- This reply was modified 3 years, 1 month ago by Smit Rathod.
Forum: Fixing WordPress
In reply to: Styling blocks using theme.jsonHi @leemon
For using max-width in theme.json, you can add below code.
"layout": { "contentSize": "100%" }
So thats how you can add max-width and for overflow i think you should keep it in css.
Thank you.
- This reply was modified 3 years, 1 month ago by Smit Rathod.
- This reply was modified 3 years, 1 month ago by Smit Rathod.
Forum: Fixing WordPress
In reply to: How to Style CategoriesYou can contact freenews theme developer or else you can find solution for this by creating some change in structure if needed and by changing the css. You can locate this file category-slug.php, So the file name for stories will be
category-stories.php, you can edit this file for structural changes and for css you need to find file by searching class names.Thank you.
Forum: Fixing WordPress
In reply to: How do I delete my plugins?If you want to start fresh by removing plugins, then log in to your hosting account and search for site folder into your files. Your plugin folders will be available in the app\public\wp-content\plugins.
Thank you.
Forum: Fixing WordPress
In reply to: Theme not loading jquery fileI checked your code. Your code seems right, does your bootstrap script enqueue? Or any your script is not loading?
Hi @tvhex
Yes if you change the tag name and category name then also your old links redirect to new permalink.
Thank you.
Forum: Fixing WordPress
In reply to: Delete multiple blocks at a timeHi @walton
You can delete multiple blocks by selecting them and pressing the delete key. You just have to do is hold the left click of mouse and select all blocks and then press the delete key of keyboard. This will remove all your blocks.
Forum: Fixing WordPress
In reply to: Hiding a random line of textHi @caseylg
Can I take a look to your page.php and index.php files? Can you send your code of files here?
Forum: Fixing WordPress
In reply to: Hiding a random line of textHi @caseylg
No need to remove this line with css. I think in your page.php or index.php, you have accidentally added this text that’s why it is appearing in your all pages and home page. So please check this 2 files page.php and index.php . If there is this line added then please remove it and then check.
Thank you.
@islp ok, are you running latest wp version?
- This reply was modified 3 years, 2 months ago by Smit Rathod.
Hi @islp
This error is because you are using trim function on array, trim function is not for array its for strings. You can search about the trim function syntax and then use it.