helldog2018
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Default Visual Text Editor Automatically Removes Line BreaksHi @eadwig,
You already tried disabling the autop filter, maybe try the following. Add the following code inside your functions.php
function clear_br($content) { return str_replace("<br/>","<br clear='none'/>", $content); } add_filter('the_content','clear_br');If this is not working, then you might as well try to create a <br> shortcode.
To create a shortcode fill in the following code inside functions.phpfunction add_linebreak_shortcode() { return '<br />'; } add_shortcode('br', 'add_linebreak_shortcode' );Now if you fill in the shortcode
[br]it should enter a linebreak.
Hope this helps a bit.Forum: Fixing WordPress
In reply to: menu and header bar disappearedAll content is stored in your database. If you switch themes it won’t destroy your content. It might not look as good as your current theme, but you can at least make sure that your theme is the culprit.
Forum: Fixing WordPress
In reply to: menu and header bar disappearedHi @nitehawk,
A standard theme is for example Twenty Fifteen. If you never removed a theme before, then you can activate it in the backend.
Just test if this theme is displaying your menu correctly.
Cheers Henk.Forum: Fixing WordPress
In reply to: Possible plug in problemEnable wp_debug in wp-config.php and see if an error is showing up on the website.
Info on how to enable debug: https://codex.wordpress.org/Debugging_in_WordPress
Forum: Developing with WordPress
In reply to: Api only for logged in usersIf you do not want a plug-in you might try this code:
function no_valid_user_no_rest($user) { if (!$user) { add_filter('rest_enabled', '__return_false'); add_filter('rest_jsonp_enabled', '__return_false'); } return $user; } add_filter('determine_current_user', 'no_valid_user_no_rest', 50);Forum: Fixing WordPress
In reply to: How do I return back to factory settingsHi @stratosmaneas,
You can do that with the plugin WordPress Database Reset.
Forum: Fixing WordPress
In reply to: alarm clock pluginForum: Fixing WordPress
In reply to: menu and header bar disappearedI don’t see any difference in the menu since the last time I checked it.
But, yes, you can try to remove the menu and recreate it from scratch.Forum: Fixing WordPress
In reply to: Default Visual Text Editor Automatically Removes Line BreaksHi @eadwig,
Can you send us a link to a page where it is showing correctly and a page where it is showing incorrectly? We might find difference in there. Thanks.
Forum: Fixing WordPress
In reply to: new user confirmation email/password email not working properlyHi @tqfan,
This is not normal behaviour. Normally an e-mail is being send out with login and password in it instead of a button to SET a password.
Are you using a different plug-in for this to send out different kind of e-mails? Or did you manually change e-mail templates via FTP?Cheers..
Forum: Fixing WordPress
In reply to: menu and header bar disappearedHi @nitehawk,
I just checked the possible settings of OceanWP theme. Please check the following:
1. In customizing header check what has been set in Breakpoints.
This tells the screens to change to mobile friendly is screensize is smaller then…
Else, just try and test some settings to see if anything changes.Forum: Fixing WordPress
In reply to: menu and header bar disappearedHi @nitehawk,
I have no idea why the menu stays on mobile menu, but this might have different issues.
– Disable all plug-ins and check if menu is still as mobile friendly.
– If that does not help, try a free standard theme of WordPressIf it is the latter contact oceanWP theme creators.
Cheers.Forum: Fixing WordPress
In reply to: Image Thumbnails in Category ListingHi @ilovediecast,
For this to work you should open your archive page in FTP and add the following code
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. the_post_thumbnail(); }This should post a thumbnail just before your post.
Maybe edit your css a bit to make it look correct.Good luck.
- This reply was modified 8 years, 1 month ago by helldog2018.
Forum: Fixing WordPress
In reply to: menu and header bar disappearedHi @nitehawk,
Are you sure your menu is gone? I am seeing a mobile friendly menu on the right upper corner of your website. Just press the three stripes.
If it should be a normal bar, then it might as well be a theme setting instead of a plug-in failure.
Let us know.
Forum: Fixing WordPress
In reply to: text and colours offHi @wordpressrun,
I am happy it is solved 😉