ZackAjmal
Forum Replies Created
Viewing 7 replies - 1 through 7 (of 7 total)
-
Forum: Plugins
In reply to: [Simple Shopping Cart] Triplicate Transactions using smart checkoutCheck to make sure there is no cache issue in the shopping cart page.
I don’t have any cache system installed.
Also when there are duplicate payments, the simple cart plugin records only one transaction in WordPress.
In rpx.php, lines 88-89 are:
if (strpos($_SERVER['REQUEST_URI'], 'wp-admin')) { return;Change them to:
if (strpos($_SERVER['REQUEST_URI'], 'wp-admin')) { return $a;And the problem is solved.
Forum: Plugins
In reply to: NextGen Gallery not working on WP 2.8.4It’s working for me.
I have the same problem.
Forum: Plugins
In reply to: Page Links To redirect page not assigned current_page_itemI have figured out the problem.
In page-links-to.php, lines 178-181 are:
if ( $highlight ) { $pages = str_replace( ' class="page_item current_page_item"', ' class="page_item"', $pages ); $pages = str_replace( '<li class="page_item"><a href="' . $current_page . '"', '<li class="page_item current_page_item"><a href="' . $current_page . '"', $pages ); }Replace them by:
if ( $highlight ) { $pages = preg_replace( '/ class="page_item page-item-(\d+) current_page_item"/', ' class="page_item page-item-$1"', $pages ); $pattern = '|<li class="page_item page-item-(\d+)"><a href="' . $current_page . '"|'; $replacement = '<li class="page_item page-item-$1 current_page_item"><a href="' . $current_page . '"'; $pages = preg_replace( $pattern, $replacement, $pages ); }Forum: Plugins
In reply to: Page Links To redirect page not assigned current_page_itemI have the same issue.
Forum: Plugins
In reply to: [Plugin: Now Watching] any demo available?You can see it working on my blog at http://www.zackvision.com/movies/.
As for why not add movies and books to the same plugin? Yes, that was an option. I just thought it would be easier/simpler to have a separate plugin since I wanted separate front-ends for books and movies.
Viewing 7 replies - 1 through 7 (of 7 total)