Tzvook
Forum Replies Created
-
Forum: Plugins
In reply to: [Posterno - Listings Directory & Classifieds] Custom Fields in RTL siteHi Alessandro
I emailed you 2 screenshots – since when I turn the admin into English (LTR direction) it works again.Tzvook
Forum: Plugins
In reply to: [Admin Page Framework] list posts/pages with select2Nevermind … thank you anyway …
I simply made my own callbacks for post-categories and pages selection ..Forum: Plugins
In reply to: [Admin Page Framework] list posts/pages with select2factory class ????
admin_pageForum: Plugins
In reply to: [Admin Page Framework] list posts/pages with select2Hi
No … not helpingForum: Plugins
In reply to: [Admin Page Framework] list posts/pages with select2Is there another way to list posts or pages, without using select2 ?
Forum: Plugins
In reply to: [RecipePress Reloaded] Plugin compatibility with child themes and multilang10x … will try it tomorrow
Forum: Plugins
In reply to: [RecipePress Reloaded] Plugin compatibility with child themes and multilangYep … she use Hebrew too ( multibyte )
You can send the link to a Github repo to tzvookAToutlook.comForum: Plugins
In reply to: [RecipePress Reloaded] Plugin compatibility with child themes and multilangForum: Plugins
In reply to: [RecipePress Reloaded] Plugin compatibility with child themes and multilang2 solutions for Multibyte langs (non-Latin ones):
recipepress-reloaded\public\layouts\rpr_default\recipe_index.php
Edit line 30 and change it from$first_letter = substr( normalize_special_chars( $post->post_title ), 0, 1 );
to
$first_letter = mb_substr( normalize_special_chars( $post->post_title ), 0, 1 );
There are probably additional places that require the “mb_substr” replacement ..
——————————————————
in the file recipepress-reloaded\public\rpr_template_tags.php lines 2299 and after – the whole “Alphabet navigation bar for listings” should be changed for non-latin languagesForum: Plugins
In reply to: [BuddyPress Activity Plus] Show in Group Activity10X Nastia
No need to work with the complete BuddyPress Legacy, only the “post-form.php”
see My fix ..Tzvook
Forum: Plugins
In reply to: [BuddyPress Activity Plus] Unstyled posts after new postlook @ my fix – the second step fix the styling …
Forum: Plugins
In reply to: [BuddyPress Activity Plus] Show in Group ActivityHi
Any ETA for fixing the “post to groups” thing ?
Activity Plus is useless without it ..
I tried a few things in /lib/class_bpfb_binder.php … but none worked .Tzvook
Forum: Plugins
In reply to: [Jobs for WordPress] No cateories after 1.7.4 upgradeYep … 10x … fixed !!
Hi
Since the license is for a year, I got to ask if it’s gonna be free afterwards.Sorry for asking, but after a year you’ll be able to hold WP-Property users as hostages ?? charging whatever you wish ….
- This reply was modified 6 years, 11 months ago by Tzvook.
For that the woocommerce.php page need to include the folowing:
<?php
$template_name = ‘/archive-product.php’;
$args = array();
$template_path = ”;
$default_path = untrailingslashit( plugin_dir_path(__FILE__) ) . ‘/woocommerce’;if ( is_singular( ‘product’ ) ) {
woocommerce_content();
//For ANY product archive, Product taxonomy, product search or /shop landing page etc Fetch the template override;
} elseif ( file_exists( $default_path . $template_name ) )
{
wc_get_template( $template_name, $args, $template_path, $default_path );//If no archive-product.php template exists, default to catchall;
} else {
woocommerce_content( );
};?>