akis
Forum Replies Created
-
I had the same problem and the code worked after I checked the “Activate plugin general settings” from the first tab. Not very obvious I must say.
It seems that /checkout/?cart_item=0&edd_action=remove does not work but /checkout/edd-remove/0 does for some reason. What am I doing wrong?
Doesn’t seem to be related to caching as far as I checked.
Apparently I have a different issue but I downgraded to 3.8.2 and things got back to normal.
Edit wp-config.php (You need FTP and a text editor)
Adddefine('WP_DEBUG', true);
at the end of the file before/* That's all, stop editing! Happy blogging. */
Activate Publicize and try to access that page.
Let me know what error do you get.
If it is a memory limit exceeded try to add the following line there too.
define('WP_MEMORY_LIMIT', '256M');
By logs I meant error logs, usually found in main directory in a file called error_log. You can also enable WP_DEBUG in wp-config.php
Do you still have the problem with the blank page? Is the site overall responsive as usual?
You can also add
define('WP_MEMORY_LIMIT', '256M');
in wp-config.php to solve the issue but weird that this didn’t happened before.Can you check the logs? Is it a memory limit or execution time exceeded error? I’m having a similar problem.
Forum: Plugins
In reply to: Post from WordPress to InstagramI’m building one, are you still interested?
Forum: Plugins
In reply to: [xPinner Lite] Issue with board idThank you!
Forum: Plugins
In reply to: [xPinner Lite] Issue with board idApparently some new issue but this time I haven’t figured out where is the problem, I’m guessing Pinterest changed something again.
Forum: Plugins
In reply to: [xPinner Lite] Issue with board idAwesome.
Forum: Plugins
In reply to: [GIF Animation Preview] Plugin Not Working on Featured ImagesIt’s actually simple: open gap.class.php from the plugin folder with your favorite text editor, duplicate line 15 and replace
the_content
withpost_thumbnail_html
.Forum: Plugins
In reply to: [GIF Animation Preview] Featured imageIt’s probably a good idea so I’ll leave it this way. An option to disable or enable this would be nice though, maybe some users have limited bandwidth.
Thank you once again for the fast reply.Forum: Plugins
In reply to: [GIF Animation Preview] Featured imageNo problem, one other thing. I’ve noticed that gifs are preloaded automatically even though I don’t view them. Is that something intentional? Would help a non-minifed version of
gapplayer.min.js
All gapParams are set tono
.Thank you.
Forum: Plugins
In reply to: [GIF Animation Preview] Plugin Not Working on Featured ImagesGlad I could help!
Forum: Plugins
In reply to: [GIF Animation Preview] Plugin Not Working on Featured ImagesTry to add
post_thumbnail_html
filter inside construct.gap.class.php:15
add_filter( 'post_thumbnail_html', array( $this, 'replace_gifs' ));