isaac.austinwebanddesign
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Mobile Month ViewHi.
Can you just paste the snippet into this thread? Or e-mail it to isaac@austinwebanddesign.com?
Joining that Slack is impossible without having the ability to check an @tri.be e-mail address.
Forum: Fixing WordPress
In reply to: Theme Folder Getting Deleted AutomaticallyHi.
We’re in the same boat with another templatemonster Cherry theme, 52569. We’re confident it’s caused by Cherry’s backup function. We can tell because, just before the theme gets deleted, cherry creates a bunch of .zip files in the backup area.
This is similar to another Cherry problem we’ve had where the themes folder reverts to a backup automatically. We haven’t been able to conclusively solve the related problem or this one.
I’ve tried contacting TemplateMonster but all they ever do is deny deny deny. Sad.
Not sure what we’ll do. Client’s site goes live this week and they will not be amused when it inevitably fails.
Forum: Fixing WordPress
In reply to: Themes directory keeps auto deletingHi.
We’re in the same boat with another templatemonster Cherry theme, 52569. We’re confident it’s caused by Cherry’s backup function. We can tell because, just before the theme gets deleted, cherry creates a bunch of .zip files in the backup area.
This is similar to another Cherry problem we’ve had where the themes folder reverts to a backup automatically. We haven’t been able to conclusively solve the related problem or this one.
I’ve tried contacting TemplateMonster but all they ever do is deny deny deny. Sad.
Not sure what we’ll do. Client’s site goes live this week and they will not be amused when it inevitably fails.
Forum: Plugins
In reply to: How to add an SSL seal to the woo commerce checkout pageOur site seal is inserted with a script, and the wordpress editor didn’t care for that, so we pasted the script in the page.php file and used a conditional statement to make sure it only appears on specific page IDs (the protected ones)
Like this:
<?php if (is_page(9)) { ?>
SSL script goes here
<?php } ?>Where 9 is the page ID of the page I want it to appear on.