justinwhall
Forum Replies Created
-
Forum: Hacks
In reply to: Website code issuesUnderstand that. Like I said above, we need to see the code for the page with the content problem. The code you pasted is from your homepage and not the problem page(s).
Forum: Hacks
In reply to: Website code issuesWell, that file goes to your front page 🙂
BY FTP access to your hosting account ideally or sometimes you can see your ttheme/plugin PHP files by going to appearance>editor. Be very careful in there 🙂
Forum: Hacks
In reply to: Website code issuesNope. I’m afraid we can’t help you unless we can see the file and or the code for the problem page and associated file(s)
Forum: Hacks
In reply to: Website code issuesThe above code checks out with the exception of what I mentioned. It is, however possible that on the interior pages you have a different problem. Where did you copy that code from. What file name?
Forum: Hacks
In reply to: Website code issuesWell, I see one problem.
<<!-- Return Header -->Should be.
<!-- Return Header -->That’s why you have an errant < on your homepage. I suspect you have something else going on in your page.php template.
Forum: Fixing WordPress
In reply to: HTTPS stopped working without reasonWhat’s your .htaccess file look like?
Forum: Hacks
In reply to: Website code issuesWhat exactly is your problem? Do you have a link?
Forum: Fixing WordPress
In reply to: HTTPS stopped working without reasonWC uses the WP function is_ssl() to redirect insecure pages. This can cause a redirect loop in some cases. Did you install another plugin?
Check if the “Force Secure Checkout” is checked here: WooCommerce > Settings > Checkout tab. Does unchecking that fix it?
Forum: Fixing WordPress
In reply to: 1 Photo is Not Uploading after I migrated my site to another server.Did you edit the options.php file? That’s a core file and shouldn’t be touched. Besides, there is no need to edit that file. When I say permission, it’s not just the specific director but the parent directory(s) as well.
Forum: Fixing WordPress
In reply to: 1 Photo is Not Uploading after I migrated my site to another server.Impossible to know for sure but it sure sounds like a permissions thing. https://codex.wordpress.org/Changing_File_Permissions
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] HTML5 requiredOh, missed the “forms” page. Changed it manually. Thank you much for your time!
Forum: Plugins
In reply to: [WooCommerce] Rates based on shipping zone USPSI’m going to answer my own question here and it looks like Table Rate Shipping is what I need.
Forum: Plugins
In reply to: [WooCommerce] Get product variations in product loopAha. Figured it was simple. Many thanks.
Forum: Plugins
In reply to: [WooCommerce] Get product variations in product loopSo:
$variations = $product->get_available_variations();In my case, $product is not a global variable. I don’t see how I’d use get_available_variations() within my loop.
Forum: Fixing WordPress
In reply to: BuddyPress redirects pagination on hompageThanks guys.