MelvinEnterprises
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Advice for copying staging site to live siteI had heard of Duplicator once before, and used it on a client site in the past. I just wasn’t sure about it in this case because the uploads folder on the site is close to 2GB worth of data, mostly images.
I hadn’t heard of the WP Migrate DB plugin though. I’ll take a look at both of them and see if they can help me.
Thanks a bunch!
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] How to Delete a form page?Delete all elements and all ‘boxes’ on the page (using the small ‘X’ in the upper left corner). That should remove the whole page from view.
Forum: Themes and Templates
In reply to: [No Nonsense] Sidebar keeps jumping back@naturpark
I was having the same problem that you were with the sidebar not remembering it’s setting on pages other than the home page.
I had to make a couple of changes to the ‘Page.php’ and ‘single.php’ file to fix it.
If you go to the ‘Editor’ section under Appearance, you can open those pages. You need to look for a couple of different things.
First look for this:
<div class='columns small-12 medium-8 large-9 medium-push-4 large-push-3' id='siteContent'>And replace it with:
<div <?php nn_content_class() ?> id='siteContent'>Then look for:
<div class='columns small-12 medium-4 large-3 medium-pull-8 large-pull-9' id='siteSidebar'>And replace it with:
<div <?php nn_sidebar_class() ?> id='siteSidebar'>Do the same things in both ‘page.php’ and ‘single.php’ and that should take care of it.
-MelvinSoftware
Forum: Reviews
In reply to: [Based On Post] Simple but great pluginThank you very much for your kind words!
Forum: Reviews
In reply to: [Based On Post] Does what it says it does.I’m very glad that this was of use to you!
Forum: Plugins
In reply to: [Based On Post] Php code for direct insertionYou should be able to use
<?php do_action( 'msbop_template_tag' ); ?>to place it anywhere in your template and have it show up.
Forum: Plugins
In reply to: [Based On Post] [Plugin: Based On Post] Widget for Custom Post TypesThank you both for requesting this feature. I apologize for not getting back to you and updating it more promptly.
The latest update should allow it to work on Custom Post types.
Thanks Again!
Aaron Melvin
Melvin SoftwareForum: Plugins
In reply to: [Based On Post] [Plugin: Based On Post] Widget no longer displaying properlyYou’re Very welcome!
Forum: Plugins
In reply to: [Based On Post] [Plugin: Based On Post] Widget no longer displaying properlyAlright, I think I’ve got the problem taken care of. I’ve updated the plugin (didn’t change the version because it was a very simple problem) Please let me know if this has solved it.
Forum: Plugins
In reply to: How to display different sidebar content based on the author of a post?Sorry about that, had it in there but forgot to close the tag.
This is a plugin that I programmed specifically to be able to put dynamic content on the sidebar, based on content input on the Post creation page. You might be able to get it to do what you want.
Here you go: Based On Post
Forum: Plugins
In reply to: How to display different sidebar content based on the author of a post?Forum: Plugins
In reply to: [Based On Post] [Plugin: Based On Post] Widget no longer displaying properlyAlright, thanks for the info.
I see the problem on your site and I’ve also been able to duplicate it on one of my own. I’ll take a look at it today and see what I can do to fix it, then post here once I’ve solved the issue.
Thanks for letting me know about this.
You’re very welcome!
Forum: Plugins
In reply to: [Based On Post] [Plugin: Based On Post] Widget no longer displaying properlyHello,
Sorry if the last update broke anything on your site. I took a look at the page you specified and can’t find a problem. I’ve checked it in Internet Explorer 9 and in Firefox and both seem to be working.
If you’re using a different browser and it’s not functioning, let me know what browser and I’ll see if I can fix it.
Thank you For the Tip, houseofstrauss,
I did a bit of research on my own on this, and discovered that as an alternative, using Hooks seemed an even better (cleaner) way to do this. I updated the Plugin (though the update was so small I didn’t update the version number). As a result, you can use the following code in your template instead:
<?php do_action( 'msbop_template_tag' ); ?>