Corey McKrill
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Make] Customization Page Doesn't LoadHi there!
Are you referring to the Theme Customizer? It does indeed sound like this is a plugin issue. Which plugins are causing the Customizer to stop working?
Forum: Themes and Templates
In reply to: [Make] Page builder not workingHi fensterdaily!
What do you mean, “It will let me build it but not publish it” ? After you add a banner section with some slides, what happens when you click the Publish/Update button?
Forum: Themes and Templates
In reply to: [Make] Trouble with Child ThemeHi there!
This is actually the expected behavior of WordPress. Technically, the child theme is a separate theme, so it has its own theme options. Options that you have configured in the parent theme will not carry over. Unfortunately this means that you’ll have to reconfigure the header and other options once you switch to the child theme.
There’s actually some discussion over whether this should be the expected behavior. There’s even a Trac ticket for it:
Forum: Themes and Templates
In reply to: [Make] Alternate Method to Social Profile and RSSHi there!
Sorry for the missing link. It should be fixed in the next release. Here is the link that is supposed to be there:
https://thethemefoundry.com/tutorials/make/#social-profiles-and-rss
Forum: Themes and Templates
In reply to: [Make] No Drop Down Menu? And Link in Footer Text?Hi there!
The custom menu supports up to three levels in the Primary Menu location. Are you thinking of a different menu?
You can add footer text in the “Footer” section of the theme customizer.
Forum: Themes and Templates
In reply to: [Make] Clickable HeaderHi there!
I’m afraid I’m not sure what you mean. The site header contains the navigation menu, which has clickable links. Likewise, the site title and logo are clickable, as they link to the site’s homepage. Which part of the header are you referring to?
Forum: Themes and Templates
In reply to: [Make] Header ScalingHi there!
Do you mean the header background image, or the logo? The header background image has several options for controlling its layout and behavior: size, position, and repeat. These only appear once you’ve uploaded an image, though.
Forum: Themes and Templates
In reply to: [Make] Adding maps to makeThe weather where I am in Alaska is gorgeous … today at least 😉
I’m not sure if we’re thinking of the same thing, but from the Themes screen, you can click “Live Preview” on any theme you have installed, which brings up a preview of the theme that you can customize along with your content. This shows you what the website will look like with the theme without actually changing what your visitors see. Clicking “Save and Activate” will make those changes live on your website, so your visitors will see them too.
This is definitely more of a WordPress issue, so you may be able to get more info on the How-To and Troubleshooting forum.
Forum: Themes and Templates
In reply to: [Make] Adding maps to makeHi there!
WordPress supports embedding images and maps directly into the content, and Make certainly gives you a lot of good options for arranging the layout of that content. You can check out the Make documentation for more information.
After upgrading WordPress and BuddyPress to their latest versions, the endless loop problem seems to have gone away. However, remote login is still not working correctly, and it appears to be due to the interaction between domain mapping and the More Privacy Options plugin, as suggested above. Specifically, both plugins do a lot of redirection, so my guess is that there’s a conflict somewhere. Now when I log in, with Remote Login turned on and Privacy set to Network Users only, it takes me to /wp-admin instead of the URL I started on, and any attempt to go to a page on the front end redirects back to /wp-admin.
I realize that throwing a second plugin into the mix may take this issue outside the scope of troubleshooting the domain mapping, but I’m curious if anyone else who has used the combination of WordPress MU Domain Mapping and More Privacy Options has run into a similar issue…
Hi Ron, thanks for replying. Neither Firebug nor Chrome is showing any script errors on site pages. When it gets to the endless loop, the console keeps getting reset before it shows anything, so it’s hard to tell there …
I’m not sure why this is happening, but I suspect that BuddyPress is sending header information before the redirection to the login page is firing, so it’s getting ignored. Here’s a workaround that seems to be working for me:
In the plugin file,
ds_wp3_private_blog.phpgo to line 461 and you’ll see:add_action('template_redirect', array(&$ds_more_privacy_options, 'ds_users_authenticator'));Change
template_redirecttosend_headers.You may want to do the same on 467 and 474 if you use any of the other privacy options.
I have the same issue. Regular blogs on the network are protected, but BuddyPress is wide open. All are set to “Netword Registered users only”.
WP 3.2.2
BP 1.5.5Forum: Fixing WordPress
In reply to: shortcodes, filters and ajaxThanks for pointing me in the right direction! I had the same problem with the Cart66 plugin: the script only initiates shortcodes if is_admin() returns false, and anything going through admin-ajax.php will return true. I ended up manually loading the shortcodes by adding Cart66’s shortcode handler to the beginning of my ajax function:
Cart66::initShortcodes();Hi wp.Man,
Did you get this figured out? I’m having this same issue:
changing the link for the shopping url in settings has no effect and always redirects to the root index.php (home page).
I’ve tried both absolute and relative URLs for the Store URL setting.