khanvict
Forum Replies Created
-
Forum: Plugins
In reply to: Need a BASIC mp3 'play button' plugini have seen audio player but i don’t need the slide out effect to display track information, time, or status bar. these will be very short clips and i just need the play button to be a small footprint.
Forum: Plugins
In reply to: [Plugin: mp3-jplayer] – Won't load or list mp3sFINALLY RESOLVED
It did turn out to be the jquery conflict with the plugin. Here’s what I did:
1) Commented out my script src tag to load jquery in my header
<!-- <script src="https://code.jquery.com/jquery-latest.js" type="text/javascript"></script> -->
so i’m not using this right now.
2) Added jQuery.noconflict() to the toggle script in my header and replaced where it used to have ‘$’s with ‘jQuery’
example: $(document.ready(function() { is now:
<script> jQuery.noConflict(); jQuery(document).ready(function() { // ordered list stuff jQuery("ol li:first").addClass("first"); jQuery("ol li:last").addClass("last"); // hides the post content jQuery('.expand').hide(); // toggles the post content on clicking the noted link jQuery('a.moreless').click(function() { jQuery(this).closest('.post').find('.expand').toggle(400); return false; }); }); </script>
I don’t know if this is the technically correct way to do it but the player and my toggled divs are now working in harmony and I do not seem to be having any other issues.
I guess my suggestion for future releases of this plugin, if at all possible, would then be to have it to where the plugin itself is using some sort of jQuery noconflict rather than us having to modify something in our template. I think this would save a lot of us novices much headache and future woes.
Thanks again for this awesome plugin. I’m glad I can use it now ??
Forum: Plugins
In reply to: [Plugin: mp3-jplayer] – Won't load or list mp3safter spending a lot of time with trying to figure this out i feel like i’ve gotten to the source but could still use some help. it seems to me the problem is probably similar to what was described in the last post about loading the jquery stuff because what i noticed is the following:
in my header when i remove:
<script src="https://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
then mp3-jplayer works fine but then my posts do not have their toggle effect because it loads the dependencies from that from jquery src.
so it seems to me that the conflict lies in it trying to load jquery twice (once in my header and then probably again in the mp3-jplayer plugin)?
here is where jquery gets loaded in the plugin (mp3j_main.php):
// jQueryUI components/dependencies if ( $version >= 3.1 ) { wp_enqueue_script( 'jquery-ui-progressbar', '/wp-content/plugins/mp3-jplayer/js/ui.progressbar.js', array('jquery', 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-mouse' ), '1.8.10' ); wp_enqueue_script( 'jquery-ui-slider', '/wp-content/plugins/mp3-jplayer/js/ui.slider.js', false, '1.8.10' ); }
I don’t know what to change here without messing anything up.
Forum: Plugins
In reply to: [Plugin: mp3-jplayer] – Won't load or list mp3sthanks for your time and suggestion simon. i commented out that line as you instructed in part one and then placed that snippet from part two in several different places throughout the body and divs of the template but with unfortuantely no success. those toggled menus do make things tricky but i’m really hoping to figure something out.
could i simply be having the same issue as this person here is?:
https://www.ads-software.com/support/topic/the-player-is-displayed-but-no-tracks-appear?replies=4i will quote his post,
“Ok, i found the problem. When the plugin search for jquery, didnt found my 1.6.1 version…
When the script adds the jquery library? I need to load the 1.6.1, not the plugin version.”
and then goes on to say the problem was resolved but not sure if that was indeed the actual problem and or what his resolution really was. i don’t even know how to do what he’s describing.
Forum: Fixing WordPress
In reply to: How to always call/load latest version of jquery?thank you.
Forum: Plugins
In reply to: [Plugin: Infinite Scroll] CSS Selectors for Folio Grid Theme?I’m trying to use the firebug extension to help me find the right elements on the page this is what I have attempted so far:
Content CSS Selector: #postWrap
Post CSS Selector: #postWrap div.postNavigation Links CSS Selector: div.post archiveTitle
Previous Posts CSS Selector: div.prevpost astill pretty confused though =/
Forum: Themes and Templates
In reply to: [CSS] Colored/Styled ScrollbarIt will only work in gecko browsers? I thought I was using one?
Even if I can’t color it, I thought of another way but I don’t know if it’s possible. Can I hide everything but the scroll arrows? Or Not display the trackbar and every other property but the triangle shaped arrow? That would be plan B at this point so that at least it’s not so intrusive and can still match with my blog theme.
Forum: Themes and Templates
In reply to: GRID theme – adding pages to grid styleto clarify it further, what i want is to have a list of all the pages in grid style. it can just display nothing but the title (if a small preview is possible that would be great) but when they click the page title it should take them to the content of the page.
and separately, how can i create one page so that when they click they can view all the blog posts as opposed to having different posts being displayed here in the grid format.
i could really use a good link on php tags and how to use them for wordpress, i might be able to figure it out from there.
thanks again for any help/input/direction.
Forum: Plugins
In reply to: Odiogo – registering blog feeddoes odiogo still work with wordpress? i tried using the same feed url with an ispeech plugin and it was fine. i would prefer to use odiogo though but i still keep getting that error =/
Forum: Plugins
In reply to: Plugin to scroll the content of the recent post?nevermind, i just manually used <marquee> tags around the php code where it was located on the page and that did the trick. thanks anyway folks.
Forum: Plugins
In reply to: Plugin to scroll the content of the recent post?Getting somewhat closer. I tried to use marquee and marquee-plus plugins in order to accomplish the scrolling post by putting in the following code:
<div class=”entry”>
<?php the_content(); ?>
</div>^ that should be the recent post content php tag if i’m not mistaken but nothing comes up when i try to enter that into the content of the marquee that i wish to scroll. am i missing something here?
Forum: Plugins
In reply to: Plugin to scroll the content of the recent post?An “auto scrolling marquee” for the content of my recent post is what i guess i’m looking for. i found a snippet of a code for how to do it for blogger posts so i’m sure there’s a wordpress equivalent out there
https://www.digitalgupshup.com/auto-scrolling-marquee-widget-html-code-for-blogger-recent-posts/
Forum: Plugins
In reply to: n00b alert: using plugins once activated?thanks guys, starting to get the hang of it.
socal i believe every plugin is different as far as implementation goes and like samboll said the read-me file will typically explain how to go about doing it.