You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
<?php
|
|
|
|
if ( ! function_exists( 'woodmart_wcfmmp_shop_page_link' ) ) {
|
|
function woodmart_wcfmmp_shop_page_link( $user_id ) {
|
|
add_filter(
|
|
'woodmart_shop_page_link',
|
|
function ( $url ) use ( $user_id ) {
|
|
if ( function_exists( 'wcfmmp_get_store_url' ) ) {
|
|
$url = wcfmmp_get_store_url( $user_id );
|
|
}
|
|
|
|
return $url;
|
|
}
|
|
);
|
|
}
|
|
|
|
add_action( 'wcfmmp_before_store_product', 'woodmart_wcfmmp_shop_page_link' );
|
|
}
|
|
|
|
if ( ! function_exists( 'woodmart_wcfmmp_per_page_custom_expression' ) ) {
|
|
function woodmart_wcfmmp_per_page_custom_expression() {
|
|
return ( ( isset( $_POST['action'] ) && 'wcfmmp_stores_list_map_markers' !== $_POST['action'] ) || ! isset( $_POST['action'] ) ); // phpcs:ignore
|
|
}
|
|
|
|
add_action( 'woodmart_per_page_custom_expression', 'woodmart_wcfmmp_per_page_custom_expression' );
|
|
}
|
|
|
|
if ( ! function_exists( 'woodmart_wcfmmp_per_page' ) ) {
|
|
function woodmart_wcfmmp_per_page() {
|
|
add_filter(
|
|
'wcfmmp_store_ppp',
|
|
function( $post_per_page ) {
|
|
if ( isset( $_REQUEST['per_page'] ) && 1 != $_REQUEST['per_page'] && ! isset( $_REQUEST['_locale'] ) && apply_filters( 'woodmart_per_page_custom_expression', true ) ) { // phpcs:ignore
|
|
$post_per_page = $_REQUEST['per_page']; // phpcs:ignore
|
|
}
|
|
|
|
return $post_per_page;
|
|
},
|
|
50
|
|
);
|
|
}
|
|
|
|
add_action( 'init', 'woodmart_wcfmmp_per_page' );
|
|
} |