erwant
Forum Replies Created
-
Forum: Plugins
In reply to: [Cooked - Recipe Management] Extract recipes in csvHi thank you for your reply
I tried this
mywebsiteURL/wp-json/wp/v2/cooked_recipewith this you get 10 recipes as this is the default returned number of recipes defined by API REST.
You can get methods for cooked_recipe at http://herbalgetresults.tk/wp-json/wp/v2/
I tried to used ?per_page=99 to increase the number of recipes listed but it doesn’t work.
COuld it be possible for you to have a look at this please ? I am sure you are more skilled than in wordpress and developping.Thank you
here is my URL
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Use value from phpThank you Tobias,
This is what I did, but it doesn’t work. 🙁
I replaced tablepress_cell_content by tablepress_table_raw_render_data in TablePress Extension file: tablepress-PHP-in-tables.php
I understand that this will execute php in table extension when $this->table = apply_filters( ‘tablepress_table_raw_render_data’, $this->table, $this->render_options ); is called but when I do that, save table in backend office and then update my website page it doesn’t display anything.The fact is this feature is really important for me, I am blocked in finding a solution for what I want to do. I understand that you are very busy in pluggin development, but could I have your help so I can go ahead on my project.
Thank you very much
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Use value from phpHi Tobias, I tried tout solution but can’t find the way to make it work.
Could you please help me a little bit more ?Thank you very much
Erwan
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Use value from phpHi thank you ,
could you just help me to understand where are the PHP table extension.
Thank you
Forum: Plugins
In reply to: [Post Grid] php code not displaying wellHi I found how to do, I think it was an error from my part. Now it works !
thank youForum: Plugins
In reply to: [Post Grid] php code not displaying wellHi
my code is :
use Carbon\Carbon;
$year = date(“Y”,strtotime(get_userdata(get_current_user_id( ))->user_registered));
$month = date(“m”,strtotime(get_userdata(get_current_user_id( ))->user_registered));
$day = date(“d”,strtotime(get_userdata(get_current_user_id( ))->user_registered));
$date1 = strtotime(get_userdata(get_current_user_id( ))->user_registered);$user_id = get_current_user_id();
$user_info = get_userdata( $user_id );
$user_roles = implode(‘, ‘, $user_info->roles);$subs_date_W = Carbon::createFromTimestamp($date1)->startOfDay()->format(‘W’);
$subs_date_YW = Carbon::createFromTimestamp($date1)->startOfDay()->format(‘YW’);
$actual_date_W = Carbon::now()->format(‘W’);
$actual_date_YW = Carbon::now()->format(‘YW’);$W_of_subs = $actual_date_YW – $subs_date_YW;
if ($user_roles == “administrator”) {
$subs_val = 53;
$W_of_subs = 53;
} elseif ($user_roles == “s2member_level2”) {
$subs_val = 4;
} elseif ($user_roles == “s2member_level3”) {
$subs_val = 12;
} elseif ($user_roles == “s2member_level4″) {
$subs_val = 36;
}$post_grid_equiv = $subs_date_W + 888;
for ($i = 0; $i <= $W_of_subs && $i <= $subs_val ; $i++) {
$post_grid_equiv1 = $post_grid_equiv + $i.”\n” ;
echo do_shortcode(“[post_grid id=’$post_grid_equiv1′]”);
}the result is that :
with the shortcode in a page it gives me that (with flip layout) :
Forum: Plugins
In reply to: [Simple Membership] test in live modeHi,
ok understand but if I have to pay everytime I test the website, it will cost me a lot of money.. :S
How could I manage that ?
THanks
Hello,
I have the same problem and same theme, but I don’t undersand where I can find the Redirect MEthod 1 ?
Could you help me please ?
Thank you