Lawrence Eagles
Forum Replies Created
-
Forum: Plugins
In reply to: [Ebook Store] A small issue with the thank you pageYes sir, I know about this short code. But it does not seem to work with orders made via woocommerce.
I am using your plugin with woocommerce and precisely I do not enable downloads just the read online feature of your plugin and woocommerce.
I’m getting “No orders found on the page where I use the shordcode” and this is not the thank you page.
Thanks for your prompt response as always.
??
Forum: Plugins
In reply to: [Ebook Store] A small issue with the thank you pageThanks a lot great to hear. But is is just that I want the thank you page to show downloads (only the products bought) as I’m trying to create a kind of “my Library” where customers can see all the ebooks they have bought. I believe the thank you page is closest to what I want.
Please is there a tweak / hook or code I can add or a way out to make it show only the downloads.
Thanks for your prompt response.
Awesome as always.
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] Google Maps DisappearedHello, I don’t mean t hijack this topic but just to ask, can I use this plugin standalone to create an online directory like yelp?
Thanks for your prompt response.
This is barely a problem caused by plugin or themes as I have noticed many off the shelf solution to be. The error you are getting means you do not have the mysqli extension.
What I simply had to do was to edit the php.ini file./etc/php/php.ini (although I don’t know what OS you are running simple find yours)
look for these two files:
extension=pdo_mysql.so
extension=mysqli.soand uncomment them.
Voila that would get the job done anytime.
This problem is often encountered when you use php 7.Forum: Plugins
In reply to: [Ebook Store] SECURE PDF FOR VIEW ONLY NOT DOWNLOADHi, Thanks for your prompt reply. What I actually meant is that I would not want the ebooks to be transferable. That is it should only be available to buyer ‘A’ only. He can view it on his device android, iphone, pc or mac as the case maybe but cannot transfer it to other people.
All other features of this plugin are A+.
I don’t know if there is a tweak to implement this kind of security or if it is already supported by the plugin.
Thanks again for your prompt reply.
And it is great new to hear of the woocommerce payment support upgrade.
Regards.
Forum: Plugins
In reply to: [Ebook Store] SECURE PDF FOR VIEW ONLY NOT DOWNLOADHello I need a feature like this too. But I would want to know if the ebook plugin can enable offline reading for purchased ebooks?
Also I would not want the ebooks to be transferable from buyer ‘A’ to his friends.
Finally can I use woocommerce supported payment gateways.
Thanks for your prompt reply.
Forum: Plugins
In reply to: [Archive Content with Archived Post Status] Rename archivedHi awesome plugin,
But your code didn’t seem to change the archived. I mean in the small drop down in the quick edit menu I still see archived and that is what is also seen beside the post.I would love it to be changed from archived to resolved. Please a working hook would be invaluable.
Awesome plugin by the way!
Thanks in advance.
- This reply was modified 7 years, 7 months ago by Lawrence Eagles.
You sir, are a genius!
Thanks your code works well. The only thing is that I don’t want post with the post status of ‘publish’ to show.
You code enabled my other custom post status to show up put still show the post that are published I want to show only post from my custom post status.
Thanks for your prompt response you are awesome.
Forum: Fixing WordPress
In reply to: Contact Form 7 Mails going to SPAMAs you have been advised changing the default cf7 to [email protected] may give you a better result however, from my experience, more often than not, this is a problem with your hosting company’s restriction of the PHP mail () function and not cf7 itself.
Since wordpress by default sends email using the PHP mail() function, which is already very popular for not being reliable, you should expect to lose some mails to the junk.
you can loose some mails to the PHP mail() function for a number of reasons but top of the list is:
Most hosting companies restrict usage of this function to prevent abuse and spam.
So if you are loosing emails to junk, chances are your hosting company is restricting the usage of this function for reasons mentioned above.
Solution:
Your best choice is to use SMTP (simple mail transfer protocol) in place of the PHP mail () function for sending mails. The SMTP is the industry mail standard and it uses proper authentication which ensures more mail delivery than the PHP mail () function which have a solid reputation for helping to conduct throngs of your mails into junk.
A simple fix for this malady is to install and configure this plugin Postman SMTP Mail/Email Log
- This reply was modified 7 years, 7 months ago by Lawrence Eagles.
Forum: Fixing WordPress
In reply to: Loading Error in WebsiteHello you site seems to be loading fine now. Although it is a bit slow. It seems you have figured it out.
Forum: Requests and Feedback
In reply to: Reduce Excessive Bandwidth usage on plugin and theme pagesI would not advice messing with codes if you are not a developer.
The problem you are having can easily be solved using a plugin called imsanityThis free plugin does everything you are asking for and better still it automates the tasks.
Here is a snippet of the plugin description: Imsanity automatically resizes huge image uploads down to a size that is
more reasonable for display in browser, yet still more than large enough for typical website use.
The plugin is configurable with a max width, height and quality. When a contributor uploads an
image that is larger than the configured size, Imsanity will automatically scale it down to the
configured size and replace the original image.The good news is you can use it on your already uploaded images too.
Check out the plugin at the wordpress repositoryForum: Fixing WordPress
In reply to: How to properly resize the background image ?I think you are using the wrong class in the above css that is why it is not working.
Here is the visual composer class of the background image I saw in your site following the link you provided..vc_custom_1497945943145 {
padding-top: 300px !important;
padding-bottom: 300px !important;
background-image: url(https://www.getdoc.co/pay/wp-content/uploads/sites/2/2017/06/AppleWatch.jpeg?id=422) !important;
background-position: center !important;
background-repeat: no-repeat !important;
background-size: cover !important;
}You should apply your custom css to this class. But be sure to put your codes in the custom css section of the visual composer plugin your theme is using.
That should do the job.
Cheers.
Forum: Fixing WordPress
In reply to: Hide category posts titleCan hide the title using CSS. Try out this code snippet by adding it to you css file.
.page-header{
display:none;
}If this fails, all you have to do is inspect the page using chrome developer tools.
learn how hereLook for the class name or page ID
Then in the code snippet I gave you replace “.page-header” with the class name or page id. This should do the job.Or you can simply follow this step by step guide to make things a lot easier:
Hide Page Title or Post Title on a Case by Case BasisForum: Fixing WordPress
In reply to: Hide category posts titleCan hide the title using CSS. Try out this code snippet by adding it to you css file.
.page-header{
display:none;
}If this fails, all you have to do is inspect the page using chrome developer tools.
learn how hereLook for the class name or page ID
Then in the code snippet I gave you replace “.page-header” with the class name or page id. This should do the job.Or can simply follow this step by step guide to make things a lot easier:
Hide Page Title or Post Title on a Case by Case Basis