jedifunk
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Update Network not updating coreOk the version.php file lists the version as 3.5.1
you can view the sites at secureinvestorsdemo.com
thanks for any and all help
Forum: Networking WordPress
In reply to: Update Network not updating coreMika – thanks for the reply… yes, the main site says 3.5.1.
But how come the styles haven’t updated?
Also, how would I verify that its a multisite network? I mean, I have a super admin, a My Sites menu, and can network activated/deactive themes & plugins, etc, etc.
Would would I do to verify 100%?
Forum: Networking WordPress
In reply to: Update Network not updating coreBecause in the bottom right corner of the dashboard it still says 3.4.2
And also all the buttons are still the old rounded style, not the more boxy style. also the links menu is still present… and many more differences that tell me its still 3.4.2
Forum: Plugins
In reply to: [WP Coda Slider] [Plugin: WP Coda Slider] 3.6.2 won't load JSusing the shortcode seems to be the best option in this instance.
Forum: Plugins
In reply to: [WP Coda Slider] [Plugin: WP Coda Slider] 3.6.2 won't load JSas i’m reviewing my code, i think i might have an idea of why. it looks like the coda slider only loads itself on pages/posts where a slider has been created, which typically would be perfect, to keep JS calls to a minimum.
however, in this instance, i’m creating a one page site that uses the curtain.js to simulate different “pages”.
i’m pulling in the page content using the following:
<?php $page_id = 7; $page_data = get_page( $page_id ); $title = $page_data->post_title; $content = apply_filters('the_content', $page_data->post_content); echo $content; ?>
using this method, is there another way to get the slider to show up? thoughts?
Forum: Plugins
In reply to: [WP Coda Slider] [Plugin: WP Coda Slider] 3.6.2 won't load JS@sabreuse i’m not surprised. its a custom theme that i’ve developed from scratch.
Why does && work that way. My limited understanding of PHP operators is that || is for OR, whereas && is for AND.
which would mean that !is_page(17) && !is_front_page() would be saying if the page is not 17 AND not front page, whereas !is_page(17) || !is_front_page() says if not 17 OR not not front page.
in this case OR would seem to be the proper use. am i crazy?
Forum: Plugins
In reply to: [Image Widget] [Plugin: Image Widget] Custom Classesjust wanted to report back on my modifications.
i have successfully added a custom class field to the plugin, and all works as expected. i would explain how here, but it’s a bit long winded.
i looked to see if this plugin was on github but did not find it. i am more than happy to share how i did it if anyone is interested.
i would still like to see this added to the plugin itself so that i don’t have to modify it each time i want to use it.
please let me know the best way to go about getting the code to someone. thanks.
Nevermind, I figured it out.
I was adding my title to the wrong file. I have created a custom archive-portfolio.php file and added the title there, and used single_cat_title to display the category title (instead of the_title). This works just as one would expect.
nevermind, I figured it out. The images are bigger than my container box, and I am NOT using the “Resize Images” option.
Once I made the images the correct size it worked like a charm!
Thanks for the help.
nevermind, I figured it out. The images are bigger than my container box, and I am NOT using the “Resize Images” option.
Once I make the images the correct size, I assume it will work just fine.
Thanks for the help.
thanks for the reply… unfortunately that didn’t work.
tried adding that to both the custom css in the WP backend, and directly to the plugin css, as well as my style.css file. no go.
if it helps, here is where I’m trying to use it.
test.gradientps.com/advisor2Forum: Plugins
In reply to: [Image Widget] [Plugin: Image Widget] Custom Classes@ryansigg did you have any luck with the custom filters? i haven’t given them a go yet, but plan to soon.
I second this request. You are still using jQuery 1.6.4 and it conflicts with the Chrome browser.
Please simply use the bundled jQuery from WordPress
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] Multiple rows for the headerahh, thanks. i knew that but was totally brain blocking it!
thanks again for such a great plugin!