Phil
Forum Replies Created
-
Forum: Plugins
In reply to: [Awesome Weather Widget] Widget not always displayingIs there an ETA for this? I installed it today and it only displays 75% of the time, otherwise it just doesn’t appear at all.
Kinda makes it unusable on a live site, but it’s such an awesome plugin when it works!
Forum: Plugins
In reply to: [Google Forms] Hide Google Doc Source & How to Use in Page template?Hi Mike, just emailed you.
Forum: Plugins
In reply to: [Google Forms] Hide Google Doc Source & How to Use in Page template?Okay, so just testing this out using the Custom Post Type and “wpgform” method.
I’m still getting the original source URL coming out in the posts source. Looking at it, it’s not actually coming out in the form data. Rather, it appears in 2 places:
1. In the link to other spreadsheet in the same workbook
It’s coming as links in the ‘listview’ which are links to the other sheets in the same workbook. Can I remove this from being printed out? Obviously I can do with CSS, but it’ll still be in the source so removing it altogether would be better/more secure for me.2. In the ‘Report Abuse’ link below the Google Form. Can this be removed?
Any help would be appreciated, this is a great plugin and I’d like to get it perfectly for my project. I’m so close.
Phil
Forum: Plugins
In reply to: [Google Forms] Multiple Sheets – Select Individual Ones?Hi, did you manage to get this working?
Forum: Fixing WordPress
In reply to: Database errorPlugins folder called plugins? ie, you didn’t rename it or anything?
Forum: Fixing WordPress
In reply to: Meta disappeared off my home page so cannot loginYou mean this?
Forum: Fixing WordPress
In reply to: Menu bar wording goes under wow sliderNo probs. Glad I could help.
Forum: Fixing WordPress
In reply to: Database errorNo renaming needed. Just backup your plugin folder onto your PC, then delete all plugin INSIDE the plugin folder on server. After that, you have a plugin folder but empty.
Then one-by-one, drag a plugin over from your backup (which you just downloaded) and see which one causes the issue.
Forum: Fixing WordPress
In reply to: Database errorOk, I would download the plugin folder using FTP (back it up). Then delete everything INSIDE the plugin folder on the server.
You then have a plugin folder with – essentially – no plugins. One-by-one you can then re-upload a plugin to the folder and see which one breaks the site.
Forum: Fixing WordPress
In reply to: How to move featured imageYou need to edit the php template to do this. It may be a case of adding a class to the featured image, or maybe be moving the featured image – it all depends on how it’s been coded in to begin with.
We can’t help much from just a screenshot though…
Forum: Fixing WordPress
In reply to: Webpage Not Displaying As ProgrammedTheme looks broken to me. I’d personally re-upload the old working version from a backup as something isn’t working right.
Forum: Fixing WordPress
In reply to: How is this plug-in so popularRead the documentation, you can bulk add images easily. You can even upload the images to a folder using FTP and the plugin will scan and include all of them with the click of a button.
Forum: Fixing WordPress
In reply to: Menu bar wording goes under wow sliderIt’s z-index.
Add this z-index value to style.css line 1507 (it’s currently set to 1):
.main-navigation li ul { display: none; margin: 0; padding: 0; position: absolute; top: 100%; z-index: 10000; }Forum: Fixing WordPress
In reply to: Database errorRename your plugins folder to something other than what it is. Check if you can access the site after that. If you can, then you can pinpoint that it is indeed a plugin. If it doesn’t help, check your db settings in wp-config.php to see if a plugin has changed them.
If that still doesn’t resolve it, check your db server is working at your hosts end.
Forum: Fixing WordPress
In reply to: Need to pull content from page with same name as usernameBasically I will have a WP page for each company. I will also create a login for each company with an appropriate username.
The name of the company page will be the same as the username I create. It will have Advanced Custom Fields entered with data.
From my Woocommerce Account page (which is one page), I want to dynamically pull in the ACF data from their company page based on the current user logged in.
So if company A are logged in, I want them to view the custom fields from company A’s page. Company B log in and view the custom fields from the company B page.
So far, I have this:
<?php global $current_user; get_currentuserinfo(); $username = $current_user->user_login; $other_page = $username; ?> <p><?php the_field('my_custom_field', $other_page); ?></p>Which in theory should work, but doesn’t. I can check the current username of the logged in user which returns the correct username. I can also add a page ID here: $other_page = 890; and it pulls in the data from the correct company page (890 being one of the company pages).
I’m baffled with it.