luetkemj
Forum Replies Created
-
Forum: Plugins
In reply to: [Display Posts - Easy lists, grids, navigation, and more] Horizontal layoutThat could easily be handled with some custom CSS.
Alternately you could try this plugin I just wrote – https://github.com/vcualtlab/postgrid
The query options are much more limited than Display Posts Shortcode but if your query is simple enough this might do the trick for you.Forum: Networking WordPress
In reply to: How to create a new category from one blog into another.Figured it out this morning.
You have to use switch_to_blog() to do it. Link to gist below:
Forum: Plugins
In reply to: [BuddyPress Real Names] Member Lists not showing real namesJust upgraded BP to the 1.7 beta and it appears to be working just fine. Thanks!
Forum: Plugins
In reply to: [Admin Menu Tree Page View] Conflict with Gravity FormsDitto here. Exact problem as OP, disabled this plugin and gforms started working perfectly again.
Love this plugin and would like top be able to use it again but unfortunately gforms has to take precedence over the convenience this plugin provides.
Error messages from console:
Uncaught SyntaxError: Unexpected token &
admin.php:7872Uncaught TypeError: Object function (e,t){return new v.fn.init(e,t,n)} has no method ‘curCSS’
jquery.dimensions.js:116To disable for a specific image just set the rel attribute manually in the advanced settings for the image. I used “none” but I think as long as it does not contain “lightbox” it should be sufficient to break the connection for the image.
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Support for a dynamic uploader?Wow. Feel free to completely ignore me because you all are amazing. Slider FTW.
Forum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin]I am having this same problem and would love some resolution. ‘Edit lists’ opens a new list creation dialogue and the list I created does not filter by the role I selected.
Forum: Fixing WordPress
In reply to: wp_nav_menu junk insertion of blank contentOkay problem solved. It was some stup invisible character inserted by my code editor. No idea how or why it got there or what it was but once it was gone everything works like normal. Blech.
Forum: Fixing WordPress
In reply to: Moved wordpress install. Site works. Admin doesn't.okay, simple mistake (as always). Forgot to did a find and replace for https://mysite.com and neglected to do a find and replace for https://www.mysite.com
Whoops!
Forum: Fixing WordPress
In reply to: Moved wordpress install. Site works. Admin doesn't.What am I looking for in there? I haven’t checked it no.
Forum: Fixing WordPress
In reply to: How to rid the space between the header image and the menu imagesmargin:0 auto 15px;
margin works like a clock> margin: top right bottom left
you are telling it to have 0 margin on top, auto left, 15px bottom, and auto right (it’s blank but will default to match the left)
You want something like margin: 0 auto;
EDIT
Although looking at the site using tables like that is going to cause you problems and could be very easily done with a div with the bg set to the brown and bottom padding. Tables are good for tabular data but not for layout. You’ve heard this before. But it’s true.Forum: Fixing WordPress
In reply to: Moved installation customer header & images not displayedAlways seems to be that way, but once you get it this time the next will be a breeze. Best of luck!
Forum: Fixing WordPress
In reply to: Moving image on pageWell, first you aren’t looking at css. You’re in a php file that likely has a mix of html and php.
Your best bet if you don’t understand the code is to just start playing with template tags. As long as you put them in the loop they will do something. They are just bits of code that tells wordpress to grab something from the db and print it as html on the frontend.
The loop is a way to structure how and when those things get printed.
if posts
is looking to see if any posts exist. If any exist no matter how many it will do something once.While have posts
looks at how many posts you have and does something one time for each post that exists.The post
is just a way for wordpress to get all the db info regarding your posts.You need to put the image in the if posts part of the loop so that you get the one image in your page. You need to manually set your class so you can target it later with css and avoid the visual editor quirks.
Hope this makes some sense to you. The best thing for you to do is just backup your current files and then start breaking stuff. Pull things out of the current page.php template, add new template tags, insert the image in different places and see what happens. Once you get a fair understanding of how to do what you want specifically restore your backup and make the mods.
Best of luck
Resources:
https://codex.www.ads-software.com/Template_Tags
https://codex.www.ads-software.com/The_LoopForum: Fixing WordPress
In reply to: Moved installation customer header & images not displayedlook in wp-content/uploads for the “swift_custom” folder. If it’s not there create one. If it is there check the permissions. Set it to 755 than try again.
Forum: Fixing WordPress
In reply to: Moved installation customer header & images not displayedDid you move the entire install to root?