Robert Ferreira
Forum Replies Created
-
Forum: Plugins
In reply to: jQuery Conflict Suggestion to Plugin DevelopersThat was the error code that I received.. I didn’t understand it either, given the fact that WP comes loaded with the noConflict snippet for jQuery. But nevertheless, I did receive a jQuery error conflict due to the aforementioned plugins. Other than the wp_enqueue_script, is there any other way around this type of error? I also understand that the $ before the jQuery call functions in the same manner as the wp_enq…! Is that correct? In any case, I’d hope that plugin developers would think about not including any jQuery library in there products as WP already includes. Please forgive my ignorance if I’m not understanding correctly about jQuery behavior. I’m versed only in HTML, very little CSS and a bit of PHP.. Not much else than that. Thanks again..
Forum: Plugins
In reply to: jQuery Conflict Suggestion to Plugin DevelopersWell, I would paste in the error code that I was getting, however, I’ve since removed the shopping cart plugin from my site. I was using the WP-ecommerce plugin as well as another plugin, Community News, which allowed visitors to write an article directly to the site on a specified page. I was getting an error when both plugins were activated. Is it possible that both plugins were loading jQuery as well as WP? If so, is it also possible, because it was called more than twice, that the wp_enqueue was overlooked after the third jQuery call? Just some theories I’m working up, especially since I don’t understand jQuery or php all that much! Cheers.
Forum: Plugins
In reply to: jQuery Conflict Suggestion to Plugin DevelopersI did read that somewhere not too long ago, however, wp_enqueue_script isn’t working the way it should! I think it may be that the some plugins include a ‘work-around’ for the noConflict code… just a theory and not sure if that’s even possible! lol And you’re right, I believe that loading jQuery through WP is the ONLY right way to do it!! Thanks for your comment.
Forum: Fixing WordPress
In reply to: Feed Output Error SolutionI’ve actually done this yesterday. I downloaded the fix-rss-feed plugin a couple days ago, and when I did a check, it came back with nearly 1000 errors! So, naturally, I went ahead and clicked the ‘fix’ button with the plugin. Well, doing this destroyed my site! It took me 2 days just to regain access to the admin dashboard. I ended up disabling all plugins, deleted a few through ftp, renamed the template folder so WP would default back, but the problem still exists. My feed isn’t showing up! Not understanding how this could have happened. Still getting this error:
XML Parsing Error: XML or text declaration not at start of entity Location: https://ibprosource.com/?feed=rss2 Line Number 2, Column 1:<?xml version="1.0" encoding="UTF-8"?> ^
Thanks for your response.
Oh, and I made the change to the correct rss2 files. I fixed the xmlrpc.php back to it’s original code. Thanks again.Forum: Fixing WordPress
In reply to: Feed Output Error SolutionOK, so I’m still having the same issue after this ‘fix’. Any further help would be greatly appreciated. Thank you
Forum: Fixing WordPress
In reply to: Feed Output Error SolutionThis did not work for my rss2 feed. I still receive this error:
XML Parsing Error: XML or text declaration not at start of entity
Location: https://ibprosource.com/?feed=rss2
Line Number 2, Column 1:<?xml version=”1.0″ encoding=”UTF-8″?>
^Any further help would greatly be appreciated. This is what I inserted into the xmlrpc.php file…
/** Include the bootstrap for setting up WordPress environment */ include('./wp-load.php'); if ( isset( $_GET['rsd'] ) ) { // https://archipelago.phrasewise.com/rsd header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true); <blockquote>$out = ob_get_contents(); $out = str_replace(array("\n", "\r", "\t", " "), "", $input); ob_end_clean();</blockquote> ?> <?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> <rsd version="1.0" xmlns="https://archipelago.phrasewise.com/rsd"> <service>
Thanks in advance for your help.
Robert