krawe
Forum Replies Created
-
The documentation for the plugin says that it had AJAX pagination. We want to be able to click on a page of events and have it dynamically load without reloading the entire page.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Targeting The Category of an eventSolved it myself. NEVER MIND.
Forum: Plugins
In reply to: [Job Manager] CSV Export doesn't workForget it. I was able to come up with a solution. Be advised this plugin is broken in the latest version of WordPress.
Forum: Plugins
In reply to: [Job Manager] Job Application / Template usageWell, after emailing the developer, reading a bazillion posts in this support forum [that did not help me whatsoever], I figured it out.
This is the answer: The template for the application form is predicated on the Jobs listing page. Whatever template is set there is what is used on subsequent functions of the plugin.
Not sure why I didn’t get an answer, but I guess I got it anyway. Is this plugin still getting support? It’s a mystery…
I found it, in case anyone happens across this thread and is having the same problem. Line 63 contains this line:
$PageContent .= '<p>'.stripslashes(nl2br($ListingDetails->listing_description)).'</p>';remove the nl2br function. This is adding the breaks. Then your code will look like this:
$PageContent .= '<p>'.stripslashes($ListingDetails->listing_description).'</p>';And you will have it fixed.
Forum: Fixing WordPress
In reply to: WP is adding break tags…Okay, I can do a nested list in the WYSIWYG, but I get the same result. When the page loads, it adds break tags in between each set of LI tags.
Forum: Fixing WordPress
In reply to: WP is adding break tags…I can’t do nested lists if I enter it manually… I need a nested list. Not to mention, it looks correct in the visual side of the WYSIWYG. It’s just happening when the page loads.
Forum: Fixing WordPress
In reply to: WP is adding break tags…It was a copy / paste of HTML from Dreamweaver over to the text tab in the WYSIWYG. The code is clean. It’s dynamically adding it. I just don’t know where.