Andrei Draganescu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Gutenberg editor adding 1 space before the para startsHi there, could you provide a screenshot of exactly how it looks? If not, is it a space like this:
The pasted text is preceded by a space
or a space like this:
The pasted text has a new line op top of it
Also where are you pasting from?
Forum: Fixing WordPress
In reply to: Update Failed: Page not found –These errors in your log look like a misconfiguration of Apache. Searching the Internet for:
> AH01797: client denied by server configuration
yielded some results explaining that this is usually because of a
DENY ALL
directive in a.htaccess
file.A solution would be:
a. Connect to the server via SSH/FTP
b. Open file/home/maurtenf/public_html/wp-admin/.htaccess
or/home/maurtenf/public_html/.htaccess
in text editor;
c. Add the “#” sign before the directive Deny from all.Forum: Fixing WordPress
In reply to: Page URL issueThank you for finding and reporting this!
Forum: Fixing WordPress
In reply to: wp admin errorHello, it appears that your theme
vg-responsive-simple
has some output before WordPress starts generating the response. This output is in the/home/islambase101/public_html/wp-content/themes/vg-responsive-simple/inc/customizer.php
file at line 83, usually some PHPecho
statement used for debug. Removing this output will solve the problem.Forum: Developing with WordPress
In reply to: Creating a nonce for deleting comment front-endHello, the default delete comment link in the dashboard is generated like this:
$del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "delete-comment_$comment->comment_ID" ) ); $trash_url = esc_url( "comment.php?action=trashcomment&p=$comment->comment_post_ID&c=$comment->comment_ID&$del_nonce" );
You can see above how the nonce is created and what I noticed is that in your link the post id
&p=$comment->comment_post_ID
is missing. I hope this helps!Forum: Fixing WordPress
In reply to: filter media library by images in current posthi, I don’t think that there is such a plugin. What is the use case to see in the media library just what is in the current post? I am asking because, for example the gallery block already opens in a filtered view of the media library which contain just the items in the current gallery.
Forum: Fixing WordPress
In reply to: Can I assign a list or grid posts block to an archive template?Indeed, you are right, making an entire page with blocks would require a page/theme builder.
The latest posts block can be used on any page, but the default archive page still depend on the theme, and the theme needs to implement a grid layout for the posts.
Plus the block does not paginate yet so it cannot really replace archive pages.
Forum: Fixing WordPress
In reply to: Image selection in a gallery then PDF export of this selectionHi there, unfortunately I searched but couldn’t find anything in the form of a WordPress plugin that will do this PDF building that you need. More so, I looked at all the provided links and they all appear to be custom coded websites.
My advice at this point is to either find a developer who can implement this behaviour on top of a WP gallery or to suggest it as a feature to one of the free or paid WP galleries ?? and then wait it out.
Forum: Fixing WordPress
In reply to: The site is experiencing technical difficulties.Hello, I’d say this is better suited as a question for Astra support.
Forum: Fixing WordPress
In reply to: Js conflictHello, on your website the browser console enumerates a list of Content Security Policy violations:
[Error] The source list for Content Security Policy directive 'script-src' contains an invalid source: ''strict-dynamic''. It will be ignored. [Error] Refused to execute a script because its hash, its nonce, or 'unsafe-inline' does not appear in the script-src directive of the Content Security Policy. (anchor, line 0, x2) [Error] The source list for Content Security Policy directive 'script-src' contains an invalid source: ''strict-dynamic''. It will be ignored. (x2) [Error] Refused to execute a script because its hash, its nonce, or 'unsafe-inline' does not appear in the script-src directive of the Content Security Policy. (about:blank, line 0) [Error] The source list for Content Security Policy directive 'script-src' contains an invalid source: ''strict-dynamic''. It will be ignored. [Error] Refused to execute a script because its hash, its nonce, or 'unsafe-inline' does not appear in the script-src directive of the Content Security Policy. (bframe, line 0, x2) [Error] Failed to load resource: the server responded with a status of 404 () (bootstrap.min.js.map, line 0)
These might be a source of missing functionality on your website. Did you set up the CSP yourself?
Forum: Fixing WordPress
In reply to: Fatal Error -: Class ‘WP_Customize_SectionHi, your theme appears to be from the MOJO Marketplace. If you have the theme you could upload it via FTP again. This way you’ll loose your fonts changes and other updates you did to your theme but you’ll get your site back.
Forum: Fixing WordPress
In reply to: user_can_post is not recognising user anymoreHi there, did you upgrade WordPress before the message stopped appearing?
Forum: Fixing WordPress
In reply to: Twenty SeventeenHi there, where are you missing the read more link? On the blog page ? I ask because there is a “Continuer la lecture” link on every post.
Forum: Fixing WordPress
In reply to: wordpress docker container with httpsHi, this looks a bit unrelated to WordPress and more like a general Docker question?
Forum: Fixing WordPress
In reply to: Ajax error when updating a page or autosavingHi, are you using your website as an admin or do you have a restricted rights user? 403 in that response looks like the current user has some missing capabilities. Here is a documentation page on how WordPress manages user capabilities.