Title: ccbraley's Replies | WordPress.org

---

# ccbraley

  [  ](https://wordpress.org/support/users/ccbraley/)

 *   [Profile](https://wordpress.org/support/users/ccbraley/)
 *   [Topics Started](https://wordpress.org/support/users/ccbraley/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ccbraley/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ccbraley/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ccbraley/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ccbraley/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ccbraley/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sticky Menu & Sticky Header] Sticky, but shoved to right](https://wordpress.org/support/topic/sticky-but-shoved-to-right/)
 *  Thread Starter [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/sticky-but-shoved-to-right/#post-12870877)
 * Can you provide some more details so I can troubleshoot? How are you seeing that
   it’s Elementor – is it CSS?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WRC Pricing Tables – Responsive CSS3 Pricing Tables] Changing icons](https://wordpress.org/support/topic/changing-icons-6/)
 *  Thread Starter [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [6 years, 6 months ago](https://wordpress.org/support/topic/changing-icons-6/#post-12040870)
 * Okay. I just purchased the Premium version, and received a confirmation email,
   but no instructions how to download the premium version of the plugin. Help?
    -  This reply was modified 6 years, 6 months ago by [ccbraley](https://wordpress.org/support/users/ccbraley/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Split Test For Elementor] Conversion Page](https://wordpress.org/support/topic/conversion-page-2/)
 *  Thread Starter [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/conversion-page-2/#post-12009368)
 * Yes! Our hosting provider (Flywheel) was doing server-side caching. I contacted
   them and they put the page we were testing on a no-cache list. After that, things
   worked!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Redirection] Redirect with Ignore Parameters not working as expected](https://wordpress.org/support/topic/redirect-with-ignore-parameters-not-working-as-expected/)
 *  Thread Starter [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/redirect-with-ignore-parameters-not-working-as-expected/#post-11620432)
 * That makes sense. With this server redirect, is there a way to grab the path 
   after the server name and take user to the specified page on the new server, 
   for example…
 * [https://support.stackify.com/somepage](https://support.stackify.com/somepage)
   
   would redirect to: [https://docs.stackfiy.com/somepage](https://docs.stackfiy.com/somepage)
 * I’m played w/ using regex values to do this. but can’t seem to get this to work.
 * …or do I have to set up a redirect for all pages? Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackUpWordPress] BUWP no longer backing up my site](https://wordpress.org/support/topic/buwp-no-longer-backing-up-my-site/)
 *  [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/buwp-no-longer-backing-up-my-site/#post-6711028)
 * Thanks rpbancroft! Now I have a working backup AND I’m smarter, knowing how to
   get old versions of plugins. 😀
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackUpWordPress] BUWP no longer backing up my site](https://wordpress.org/support/topic/buwp-no-longer-backing-up-my-site/)
 *  [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/buwp-no-longer-backing-up-my-site/#post-6711026)
 * Drat! The only old version of backupwordpress I saved locally is 2.6.2, which
   does NOT play well with the latest version of WP. Does anyone have a recommendation
   for another backup plugin? Or a location where I could download the 3.2.7 version
   of backupwordpress?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seamless Donations is Sunset] Clicking Donate button just hangs](https://wordpress.org/support/topic/clicking-donate-button-just-hangs/)
 *  Thread Starter [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/clicking-donate-button-just-hangs/#post-4690796)
 * I was hoping to test this before we went live, but understand why this won’t 
   work. We’ll take it live and let you know if there’s any problem then.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Ultimate Recipe] Recipe Pages Show Blog Header instead of Recipe Header](https://wordpress.org/support/topic/recipe-pages-show-blog-header-instead-of-recipe-header/)
 *  Thread Starter [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/recipe-pages-show-blog-header-instead-of-recipe-header/#post-4615754)
 * Instead of creating a whole new template, I added this code to the single.php
   file (below). If the post is in the News category (blog), then it displays the“
   News” title, otherwise it displays the “Recipes” title. I realize this code will
   have to change if we add more post categories.
 * <?php
    if (in_category(“2”)) { _e(‘News’,’wpex’); } else { _e(‘Recipes’,’wpex’);}?
   >
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Ultimate Recipe] How to Change Titles in Recipe](https://wordpress.org/support/topic/how-to-change-titles-in-recipe/)
 *  Thread Starter [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/how-to-change-titles-in-recipe/#post-4615753)
 * I used the Codestyling Localization plugin to edit the English/UK language file.
   I added a translation of “Recipe Notes” to “Produce Information”, but “Recipe
   Notes” is still appearing on the page. I also did a rescan of the language file.
   Still no luck.
 * Other ideas?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Content Aware Sidebars - Fastest Widget Area Plugin] Home Page Breaks](https://wordpress.org/support/topic/home-page-breaks/)
 *  [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/home-page-breaks/#post-3967272)
 * I disabled ALL my plugins, then enabled Content Aware Sidebars only. The home
   page gave me the error.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Content Aware Sidebars - Fastest Widget Area Plugin] Home Page Breaks](https://wordpress.org/support/topic/home-page-breaks/)
 *  [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/home-page-breaks/#post-3967266)
 * I have this exact same problem. For me it’s the home page only. I can still get
   into the WP dashboard and “View” all the other pages. They load fine. But when
   I click to “Home”, or try to pull up the site URL, I get the redirect error.
 * My theme required me to upgrade PHP to 5.3 – maybe that’s the issue. ?? I’m on
   WP 3.6.1.
 * Maybe this info will help. I’d love to use this plugin, but currently I can’t.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seamless Donations is Sunset] Remove Address Field](https://wordpress.org/support/topic/remove-address-field/)
 *  [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/remove-address-field/#post-3724458)
 * I removed the address fields from the form by doing the following:
    1. go to 
   Plugins/Editor and find the Seamless Donations plugin
 * 2. edit dgx_donate_paypalstd.php and comment out the following line:
    // $content
   = dgx_donate_get_billing_section($content);
 * 3. since billing fields are required, you also need to comment out the required
   field checks on these fields. edit js/paypalstd-script.js and comment out all
   the following lines:
    // if (address == “”) // { // formValidates = false; //
   DgxDonateMarkInvalid(“_dgx_donate_donor_address”); // }
 * // if (city == “”)
    // { // formValidates = false; // DgxDonateMarkInvalid(“_dgx_donate_donor_city”);//}
 * // if (zip == “”)
    // { // formValidates = false; // DgxDonateMarkInvalid(“_dgx_donate_donor_zip”);//}
 * This worked spectacularly for me! Hope it helps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seamless Donations is Sunset] Locks up and never forwards to PayPal](https://wordpress.org/support/topic/locks-up-and-never-forwards-to-paypal/)
 *  [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/locks-up-and-never-forwards-to-paypal/#post-3467323)
 * allendav – you nailed it! I removed all my HTML code (as a test) and just left
   the [dgx-donate] shortcode. Sure enough, the Donate button now works! …now to
   gradually add my HTML back and figure out where it went bad.
 * Thanks for troubleshooting this! I love this plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Seamless Donations is Sunset] Locks up and never forwards to PayPal](https://wordpress.org/support/topic/locks-up-and-never-forwards-to-paypal/)
 *  [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/locks-up-and-never-forwards-to-paypal/#post-3467317)
 * Was this issue ever resolved? I’m having the same exact issue.
 * I also tried the deactivating of all other plugins, but like dleifer, that didn’t
   help. After clicking “Donate”, I see the little animated boxes that show that
   the program is working, but it never takes me to the thank-you screen. The Seamless
   Donation Log shows the message “Donation transaction started” every second, but
   never resolves. After several minutes, I ended up just closing the browser window.
   Nothing ever appeared in my Donations or in Paypal.
 * I tested in IE 10 and Firefox 20…got same results in each.
 * This plugin looks PERFECT for my purposes, but just doesn’t work. Help?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Brankic Social Media Widget] Twitter Feed Broken – Stuck on "loading tweets…"](https://wordpress.org/support/topic/twitter-feed-broken-stuck-on-loading-tweets/)
 *  Thread Starter [ccbraley](https://wordpress.org/support/users/ccbraley/)
 * (@ccbraley)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/twitter-feed-broken-stuck-on-loading-tweets/#post-3848091)
 * Looks like there’s a new version of the plugin. I haven’t tried it yet, but thought
   the other folks on this thread may want to know. FYI – looks like Twitter is 
   how Brankic communicates. [@brankic1979](https://wordpress.org/support/users/brankic1979/)
 * Good luck!
 * [http://wordpress.org/plugins/brankic-twitter-widget/](http://wordpress.org/plugins/brankic-twitter-widget/)

Viewing 15 replies - 1 through 15 (of 15 total)