danthefan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: overwriting files when backing upAdvantages:
– one single file
– less space neededDisadvantage:
– have to unzip it before using itForum: Fixing WordPress
In reply to: How to stop Google from indexing Media files?You can allow or disallow by directory or file ending too.
Forum: Plugins
In reply to: [WP-OTP] Profilseite l?dt nicht mehr komplett seit 0.2Same as above, the User Profile Page is broken, no Settings for WP-OTP available.
Error Message::Fatal error: Uncaught Error: Class 'Base32\Base32' not found in /wp-content/plugins/wp-otp/admin/class-wp-otp-admin.php:213
Forum: Fixing WordPress
In reply to: Media upload and editing of text not workingso you changed your site ulr? read this:
Forum: Fixing WordPress
In reply to: How to stop Google from indexing Media files?even google has a robots:txt:
Forum: Fixing WordPress
In reply to: How to stop Google from indexing Media files?you could put a robots.txt file on your server:
Forum: Fixing WordPress
In reply to: Gutenberg hackable?gutenberg itself is only a extension to wordpress. it should not introduce any security issues. if you have spam injection, then you have a general security problem.
Forum: Fixing WordPress
In reply to: ACF and Forms Pluginsto make a good use of acf, you need to code a little bit. it’s very well documented:
https://www.advancedcustomfields.com/resources/Forum: Fixing WordPress
In reply to: Are the default themes worth using?well, no. But, they are are a good starting point if you want to build a custom theme.
Forum: Fixing WordPress
In reply to: WP spawning several database queriesaccording to the screenshot it rather looks like your problem is in the svg support plugin?
Forum: Fixing WordPress
In reply to: Keep track of downloaded filewhat is it you want to track anyway?
Forum: Fixing WordPress
In reply to: Text slider with automatic columnsthe problem with preset hight is, you never know your height. so no designer takes it into consideration. in responsive design, you always react on screen width. the height adapts to the content.
take a look at flexbox or grid:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
https://css-tricks.com/snippets/css/complete-guide-grid/- This reply was modified 6 years, 6 months ago by danthefan.
Forum: Developing with WordPress
In reply to: Render meta box in wordpress API restI think
the_content()
destroys your code. It filters special characters.
Maybe you have to escape your"
.Forum: Fixing WordPress
In reply to: How to fix automatically redirectsI don’t understand your problem. Besides, your TLS Certificate is broken.
Forum: Developing with WordPress
In reply to: Using wp_redirect in shortcode based contact formAs you cannot do an action after the
return
statement inside your shortcode function, my idea would be to solve it via theaction
attribute in the form tag.https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#action