xdividr
Forum Replies Created
-
Ah, thanks. I don’t know why I didn’t see the other topics. My apologies for the duplicate post, and thanks for the patch!
Forum: Fixing WordPress
In reply to: Removing content from several posts at the same timeI am assuming that I will need to have it search the tag, and then leave the second box blank, correct?
I’m not sure if I fully understand the question, but some plugins support wildcard or fuzzy matches to match partial results.
Another option is to use WP-CLI and run
wp search-replace
using the regex option
https://developer.www.ads-software.com/cli/commands/search-replace/A third (scary) option is to do this directly in MySQL. If you go this route, it may be easiest to dump the database to a text file, then use your preferred text editor to do the find and replace, then import the updated database file.
With any of these options, make a separate database backup first.
Forum: Fixing WordPress
In reply to: Removing content from several posts at the same timeYes, that should be how it works. Many if not all of these types of plugins allow you to preview what will be changed so you can test before actually running the replace.
Again, be sure to make a full database backup before you do a search and replace, so you don’t risk losing data.
Forum: Fixing WordPress
In reply to: Removing content from several posts at the same timeYou can use a search and replace plugin to help with that.
https://www.ads-software.com/plugins/search/search+replace/
MAKE A BACKUP FIRST!
Forum: Fixing WordPress
In reply to: Hide file URL when openedIt sounds like you may want to look into using a plugin that can generate unique download URLs for each user, such as Woocommerce or Easy Digital Downloads or similar.
Alternately, this plugin looks as though it may work for your needs, although I have no experience with it myself.
https://www.ads-software.com/plugins/secure-downloads/Forum: Fixing WordPress
In reply to: Paragraph access ONLYI should clarify that what you’re asking for should be possible, by somehow gathering the user-edited paragraph (for example by using a form builder plugin) then placing it on the page programmatically (for example, using a shortcode or other means).
There are a number of both free and commercial plugins that should be able to accomplish this, which you can find by searching.
However restricting editing to just one paragraph, strictly speaking, is probably not possible.
Hope that helps!
Forum: Fixing WordPress
In reply to: Not able to edit any pagesIs the WordPress REST API disabled, by any chance? Either by a plugin or in functions.php ?
Does this happen while using Gutenberg or the Classic editor or both?
- This reply was modified 5 years, 1 month ago by xdividr.
Forum: Fixing WordPress
In reply to: problem with rssPlease consider sharing your solution so that others may benefit from it.
And if your problem is solved, please mark this topic as “Resolved”. Thanks.
Forum: Fixing WordPress
In reply to: Latest Posts block modFor example, take a look at https://www.ads-software.com/plugins/recent-posts-widget-with-thumbnails/ which may do what you need.
Forum: Fixing WordPress
In reply to: Site Down and Up Multiple timesYou can also use an uptime monitor service to log times when the site was unavailable. This can be useful to show to your web host’s support.
For example:
Forum: Fixing WordPress
In reply to: Paragraph access ONLYProbably not. You may want to search for plugins that allow users to submit content.
If you’re wanting to allow a certain user to make edits to page, you can set their user role to Contributor to allow them to edit their own posts. If you also want them to be able to publish, set their role to Author.
Forum: Fixing WordPress
In reply to: problem with rss2-after reading wordpress helps, i understood i can visit special topic in RSS format, for example i try to visit this link :
https://www.abarmag.com/72082/feed/
but the RSS only show the small information, but i want to read the full topic !Under Settings > Reading make sure that “For each article in a feed, show” is set to “Full Text”.
Forum: Fixing WordPress
In reply to: Site nameI’m wondering if you mean this:
Is there a way to hide the site title heading above the navigation menu, without changing your site name in Settings?
If that’s what you mean, you could add the following in Appearance > Customize > CSS
.title-area { border: 0; clip: rect(0, 0, 0, 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; white-space: nowrap; width: 1px; }
This will keep the site title accessible for screen readers, but remove it from layout.
https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
Forum: Fixing WordPress
In reply to: after installing wordpress, i cant acces my wp admin panelWhat URL are you redirected to when you go to
your-domain-name.tld/login
?If you have WordPress installed in a subdirectory, you may need to login there, for example:
Forum: Fixing WordPress
In reply to: Random 404’s when in the admin sectionYou may need to check your file ownership too
https://help.dreamhost.com/hc/en-us/articles/214750918-UNIX-commands-Changing-ownership