aladinDr
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Slider 3] Questionactually i used shortcode and on text layer and it’s working without custom code , thank you
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Translating French to Arabicit’s resolved thank you
Forum: Plugins
In reply to: [Sky Login Redirect] Question about compatibilityjust by java programming i add my site in webview for make our clients use our site in their phones ,this link give you idea , https://stackoverflow.com/questions/13269059/open-url-in-webview-in-android , i find your plugin not work on webview
good luck ??
yeah , it’s help , but i mean i wish that find plugin of multip levels per user will working with those addons …thank you too much ??
another thing please for us try to make your plugin compatible with your addon with wp courseware or learndash , it’s really good to see the next addon working for our courses membership big thanks ??
just we ‘re using woocommerce for sell levels , the packages addon , can help on that or no (of course until the release of your next addon be available )
really nice , cannot wait to your new addon , really amazing work from amazing team good luck
actually it resolved after i seen this code
https://gist.github.com/strangerstudios/d2e50c63ac9c1647d6bc
, i want to thank pmpro for all open sources they’re give to help us …. ??Forum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] Questionyeaaah it resolved now thank you
I really appreciate your advices , thank you too much
Okay thank you , i created forms by my self , coz i’m begginer in web coding , i’m scare if my solution maybe can break our site or server ,
can you check my code in my github gist , https://gist.github.com/AladinDridi/6f41e94c70fabf9e15726634fb9a967b
, and i’ll appreciate if you tell me that code can break my site or no , coz it’s working well , but i’m little scare about any troubles with high traffic
best regards..that’s what i did , thank you
Forum: Plugins
In reply to: [PHP Code Widget] Questioni resolved the error but <form method=”get” id=”form1″ <?php if(isset($_GET[$cookie_name])) {echo ” style=’display: none'”; } ?>>
<input type=”submit” name=”on” value=”on”>
<input type=”submit” name=”off” value=”off”>
</form><?php
$cookie_name = “user”;
$cookie_value = “user2″;if(isset($_GET[‘on’])) {
onFunc();
setcookie($cookie_name, $cookie_value, time() + (86400 * 30), “/”);}
if(isset($_GET[‘off’])) {
offFunc();
}
function onFunc() {
global $current_user;
get_currentuserinfo();
if(user_can($current_user ,”7eme”)) {
// Remove role
$current_user->remove_role( “7eme” );
// Add role
$current_user->add_role( “contributor” );
echo “..votre niveau scolaire maintenant est 8ème année de base”;
}
}function offFunc(){
echo “Bonne chance dans le prémiére fois”;
}?> ,then when i click to the button on , error display like this
Warning: Division by zero in C:\xampp\htdocs\wptest\wp-content\plugins\php-code-widget\execphp.php(27) : eval()’d code on line 12
// so please can you tell me what i should modify to the methode setcoockie for make that error resolve thanks and sorry for any disturbing ??Forum: Plugins
In reply to: [WordPress REST API (Version 2)] Questionresolved after putting this right link :
https://blog.rumi-app.org/wc-api/v1/orders?consumer_key=&consumer_secret=&status=completedspecial thanks to https://www.skyverge.com/blog/using-woocommerce-rest-api-orders-endpoint/