squasher
Forum Replies Created
-
I’ve updated to the latest version again. I’m using WP Super Cache and Fast Velocity Minify. Turning of caching does not help. Fast Velocity Minify I’m using quite safely. I also did not activate JS- and CSS compiling.
Hi,
I’ve added the url. So at this moment version 3.5.1 is active.
I solved this by a rollback to version 3.5.1.
I checked it by updating again to 3.6.1 and then again the images disappeared. So for some reason the problem starts from version 3.6.
Forum: Developing with WordPress
In reply to: Same behaviour for custom post type as WPWow, is it really as simple as changing this line in my create_post_type function:
‘capability_type’ => ‘page’
to
‘capability_type’ => ‘post’
Amazing if that’s all to it!
Forum: Plugins
In reply to: [Accordion] Can not add content to accordionsSorry, found a piece of code in a plugin that caused a confict! Solved!
- This reply was modified 6 years, 10 months ago by squasher.
Forum: Developing with WordPress
In reply to: Pre_get_posts filter causes menu items to disappearThanks, I will do that!
Forum: Developing with WordPress
In reply to: Pre_get_posts filter causes menu items to disappearUnbelievable, that was easy! I added the following line and it was solved:
if ( ! is_admin() && $query->is_main_query() { code }
I never realised that impact.
Thanks Steve!
- This reply was modified 6 years, 11 months ago by squasher.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Always show mobile menuNot yet. It’s still on localhost. But I think I’m almost there. Only with CSS adjustments, btw. I will puzzle some more…
Forum: Fixing WordPress
In reply to: Mail from address shows server name (different from other posts!)Hmmm, yes. I think I need a SMTP-plugin as well to solve it with an email address.
Thanks.
Forum: Fixing WordPress
In reply to: Mail from address shows server name (different from other posts!)Thanks, but I’ve tried this and that doesn’t solve the problem. It looks okay, but in the mail headers still the servername is mentioned.
Forum: Everything else WordPress
In reply to: Why is my post deleted?Thanks both!
Forum: Plugins
In reply to: [Contact Form 7] Events and redirections not working with functions.phpIs it possible to get a response from the creator of this plugin?
This solution to measure events just doesn’t seem to work and this is a big problem as I can’t measure goals anymore.
Thanks.
Forum: Plugins
In reply to: [Contact Form 7] Events and redirections not working with functions.phpI used the same docs, but without success.
I placed some code on the same page as the shortcode (in text mode) and then redirection does work:
<script> document.addEventListener( 'wpcf7mailsent', function( event ) { location = 'https://www.example.com'; }, false ); </script>
However, this is not ideal as it might get scripted out sometimes by WP.
Forum: Plugins
In reply to: [Polylang] Polylang redirect to former site url adressThis doesn’t work for me. It’s really driving me crazy…
I replaced all the URL’s in the database AND saved the options again under Languages > Settings > Urls modifications. But Polylang keeps redirecting to the old URL.
If I deactivate the plugin the problem is solved, but the multilanguage option is gone off course.
Where does Polylang save the URL?
Forum: Developing with WordPress
In reply to: Shortcode only produces text “Array”Well, solved it by adding some Javascript to remove empty p-tags…