lianpb
Forum Replies Created
-
Forum: Plugins
In reply to: [SVG Support] SVGs appearing at 1px since update to 2.4Hello @benbodhi
Is there a way I can send you a Dev URL that isn’t displayed on this forum?
Many thanks
Forum: Plugins
In reply to: [SVG Support] SVGs appearing at 1px since update to 2.4Hello @benbodhi
I have just tried updating the 2.4.2 and unfortunately i’m still getting the same issue when the images are appearing at 1px by 1px.
Many thanks
Forum: Fixing WordPress
In reply to: CPU spikes and wp-admin/plugin-install.php?Hello rmtux,
I would suggest deactivating all the plugins then one at a time activating them and rerunning the cmd for each, this will narrow down the plugin that might be causing the issue.
Some developers can add ‘must use’ plugins which could be why you are seeing ones you have not installed. So deactivating and testing would hopefully narrow down the cause of the issue.
I hope this helps,
Forum: Fixing WordPress
In reply to: Manually updating the databaseHello caleb1,
In the first instance I would be check your PHP version and memory limit. Your PHP version needs to be PHP5.6 and higher. Previously when I was greeted with a blank screen i found the issue was memory related.
Try
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true );in your wp-config.php file this will display an error for the memory limit if this is the issue.
If your question has been answered, we would love if you would mark this topic as resolved in the right hand sidebar. This helps our volunteers find the topics that still need attention.
- This reply was modified 7 years ago by lianpb.
Forum: Fixing WordPress
In reply to: Hide/Show All Post Texts at once (toggle effect) with plugin?Hello vipini,
With collapsable content i have previously used bootstrap for this https://getbootstrap.com/docs/4.3/components/collapse/ which gives the ability to wrap the elements you wish to include in the collapsable content. Bootstrap isn’t a plugin but using and installing bootstrap is extremely easy and has a large library of classes you can call upon.
However I have done a little bit of research on the ww.wp.xz.cn plugins and have found this https://ww.wp.xz.cn/plugins/show-hidecollapse-expand/ which has 12 5 star reviews. I haven’t used this plugin myself however from the demo this would appear that it might be useful for your query.
If your question has been answered, we would love if you would mark this topic as resolved in the right hand sidebar. This helps our volunteers find the topics that still need attention.
- This reply was modified 7 years ago by lianpb.
Forum: Fixing WordPress
In reply to: Looking for a successful newsletter pluginHello moshe1111,
I am not aware of a plugin that does all the things you would like however i have in the past used MailChimp as the mail distributing platform then used Ninja Forms MailChimp extension to connect my site and the mail platform via API.
This doesn’t send emails automatically based on new articles, products, etc but you can quite easily set up a template within MailChimp so the distribution of emails are faster.
https://mailchimp.com
https://ninjaforms.com/extensions/mail-chimp/I hope this helps. Please let me know if this has resolved your issue.
Forum: Developing with WordPress
In reply to: Second custom post type breaking the firstHello Sam,
I have just tested your code and can see both custom post types in the backend, are you referring to the front end files conflicting? This might be because in your custom post types you have not specified whether the custom post types are using archive pages.
'has_archive' => false
or
'has_archive' => truePlease let me know if my suggestion has resolved the issue by marking this post as resolved.