Theme Drawer
Forum Replies Created
-
Forum: Localhost Installs
In reply to: There doesn't seem to be a wp-config.php file – But there is!This may be a silly question but have you created a database?
Forum: Fixing WordPress
In reply to: 3.6.1 Update wrecked the admin sideScreenshots not working…
Forum: Fixing WordPress
In reply to: Help with Genesis and Child ThemeThis is not a StudioPress theme, this looks to be a theme by https://www.web-savvy-marketing.com/. Most of the time when you buy a theme you should be getting documentation along with it. I would check with them.
Forum: Plugins
In reply to: [AgentPress Listings] Is Listings Limited To Agencypress ThemeThe Agentpress Listings plugin should work with any Genesis theme just fine. All it basically does is add a new custom post type much like pages or posts that have custom fields for the listing information.
There should be no issues getting this to work. As far as the sidebar is concerned the widgets are included when the plugin is installed.
It depends on what theme you are using but this is the basic code.
Add this to your functions.php file
<?php if ( is_home() ) { // If it is the home page do this... echo ' <style> #access {display: none;} </style> '; } else { // If it is not the home page do nothing } ?>
You would need to substitute #access with the id or class that your menu is in.
Forum: Fixing WordPress
In reply to: How do I transfer the contents from main domain to a blog?Have you taken a look at the built in export and import options in WordPress?
In the WordPress Dashboard go to Tools > Export and Tools > Import to see the options.
Forum: Everything else WordPress
In reply to: Is there a plugin for thisThere is something like this built into Jetpack.
Forum: Fixing WordPress
In reply to: Migrating a blogger blog to wordpressThere are built in import settings in WordPress to help make the process as painless as possible. WordPress in my opinion is a much better platform.
Forum: Hacks
In reply to: How to link a button to author's posts pageI would give this a shot
<a href="<?php echo home_url() . '/author/' . get_the_author_meta( 'user_login', wp_get_current_user()->ID ); ?>" >My personal page</a>
Placement of this code depends on the theme you are using but would need to go into your template somewhere.
If you aren’t familiar with editing themes and would rather not change any files the other option is to add this into a sidebar using a widget.
You can achieve that by installing this widget here. Then adding it to the sidebar widget area you wish to have it show up and add the above code.
Forum: Everything else WordPress
In reply to: Redirect From Mobile Site To Desktop?Here is a post that may get you pointed in the right direction. https://www.malphursinteractive.com/view-full-site-mobile-redirect-script/
This info would need to be inserted somewhere into the head of your site.
The other and more popular option is to grab a mobile responsive WordPress theme.
I would recommend taking a look at this as an option. This way if you have content on your mobile site that is the same as your desktop you only have to write it once.
Forum: Everything else WordPress
In reply to: What about blog subscriptions?I personally have never used the Jetpack subscriptions.
I have always stuck to Mailchimp. There are many plugins and tutorials that can walk you though setting this up. A quick Google search should get you started.
Forum: Everything else WordPress
In reply to: Importing blog from tumblrI’m not very familiar with Tumblr. Using the built in WordPress import feature is definitely the right way to do this but it won’t import everything.
The themes for Tumblr and WordPress are different so you would need to either find a theme that is similar to the one they are using now or build a custom theme.
As far as the Followers this seems to be a Tumblr specific feature that is used internally in their site only.
Forum: Everything else WordPress
In reply to: Database backup uploadThere are quite a few things that need to be changed in the database when switching hosts. There are options other than moving a site manually.
When moving sites between servers for either myself or clients I always use BackupBuddy (This is a payed plugin though). This allows you to backup the entire site including the database and move it without the need to ever go into the database and make manual changes. I highly recommend this.
If looking to do it manually you would need need to open up your wp-config.php file in the root directory of your WordPress install and replace the database name, database password and host name.
Forum: Everything else WordPress
In reply to: WordPress staffFeel free to ask and I can do my best to help you out with whatever I can. [ email redacted ]
Forum: Everything else WordPress
In reply to: SubscriptionI personally use Mailchimp to set up all my list as well as clients lists. Even though it has a limit it allows you to upgrade if you ever need to.
There are a couple ways you can add the subscription form/link to your site.
Here is a post that walks you through doing this without a plugin:
https://kb.mailchimp.com/article/how-to-add-a-mailchimp-signup-form-to-your-wordpress-blogMailchimp also has a blog post with a list of compatible WordPress Plugins:
https://blog.mailchimp.com/wordpress-plugins-for-mailchimp/