Forum Replies Created

Viewing 15 replies - 361 through 375 (of 388 total)
  • Plugin Author Condless

    (@condless)

    The limits are applied by user role and not by membership level, so you will have to always keep the user role same as his membership level.
    The “Roles for Membership Levels” add-on will automatically set the appropriate role for new members by their membership level after completing the checkout process, in other situations you will have to set the appropriate role for users manually.
    For example, user rc-test2 purchase ‘bronze’ membership, he will be assigned the ‘bronze’ role, than he will be limited to create 2 dream interpretation posts, if you change his membership level to ‘silver’ you will have to change his role to ‘silver’ as well, than he will be limited to create 3.
    In order to see which limit applies on which user- enable the ‘Document Statistics’ option (via the plugin settings) and see the users list (Dashboard => Users).

    Plugin Author Condless

    (@condless)

    Hi,
    Please update to the latest version of the User Posts Limit plugin, create limit for each membership level role by high to low order (platinum, gold, silver, bronze), and assign the users all their relevant membership levels roles (not just the highest)- when this is not done automatically by the “Roles for Membership Levels” add-on, do it manually.

    Plugin Author Condless

    (@condless)

    Hi,
    The feature of network-wide settings is planned for a future version of the plugin.
    Currently you will have to manualy configure the posts limits via the plugin settings site by site.

    Plugin Author Condless

    (@condless)

    Hi,
    Did you mean to limit for example the author to posts 5 times a month in each subsite or 5 times a month totally in the whole network subsites?

    Plugin Author Condless

    (@condless)

    In addition to @wasanajones answer, what if you will keep for each user his highest membership level role, and put the limits accordingly.

    Plugin Author Condless

    (@condless)

    Hi,
    You may use the Paid Memberships Pro “Roles for Membership Levels” add-on, which creates a role for each membership level, than you will be able to apply limits based on those levels.

    Plugin Author Condless

    (@condless)

    Hi,
    Thanks for getting in touch!
    Did you set posts limit on the ‘subscriber’ role?
    Please enable the ‘Document Statistics’ option (via plugin settings) and check the users list (Dashboard => Users), It will help you to find out which limit is applied on which user, you may try none/year/month/week/day cycle values (via plugin settings) to verify the count.
    Keep in mind it counts also posts in the trash, and does not count the first guest-written post of new users since those posts will be assigned to the user configured in Dashboard => User Frontend => Settings => Frontend Posting => Default Post Owner.

    • This reply was modified 5 years, 8 months ago by Condless.
    Plugin Author Condless

    (@condless)

    Hi and good evening,
    You may update the plugin, than select some capability that the main admin has but your customer’s admin doesn’t in the ‘Plugin Management Capability’ option.
    This way your customer will not be able to access the plugin settings and you will be able to restrict his number of pages.

    Plugin Author Condless

    (@condless)

    Hi Jasam,
    The plugin docs includes instructions of how to retrieve the relevant shipping zone for a given city via the WooCommerce REST API.

    Plugin Author Condless

    (@condless)

    היי טל,
    בלחיצה על “חישוב המשלוח” שבעגלה אמור להיות מוצג דרופדאון של הערים, בעת בחירת עיר מסוימת יופיע אם יש אליה משלוח או לא.
    האם התכוונת לדרופדאון נוסף שיכיל רק את הערים אליהן מוגדר משלוח?

    אם ברצונך למכור רק ללקוחות מהערים אליהן מוגדר משלוח השתמש באפשרות “מיקומי מכירה” שבהגדרות תוסף.

    Plugin Author Condless

    (@condless)

    א’- בעדכון הבא של התוסף הערים יופיעו בדרופדאון לפי האלפבית

    ב’- במידה וכבר יש ברשותך רשימה של כלל היישובים השייכים לאזור השפלה, השתמשי בכלי העריכה הקבוצתית שבהגדרות תוסף על מנת להוסיף את כולם בבת אחת.

    נ”ב
    בכלי העריכה הקבוצתית ניתן להוסיף בבת אחת את כל היישובים השייכים למחוז מסוים, לדוגמא הזיני את הקוד של מחוז חיפה:
    IL031
    על מנת להוסיף את כל היישובים השייכים למחוז חיפה, רשימת הקודים של המחוזות נמצאת בתיקיית התוסף בנתיב:
    /i18n/cities/IL.php

    Plugin Author Condless

    (@condless)

    היי סטפני, ניתן לחלק את פתח תקווה לשכונות:
    הוסיפי את הקוד לתבנית לקובץ
    functions.php

    add_filter( 'woocommerce_states', 'csz_split_woocommerce_states', 30 );
    function csz_split_woocommerce_states( $states ) {
    	$city_code = 'IL7900';
    	$sub_cities = array( 'אחדות', 'אחים ישראלית', 'אליעזר פרי', 'בלינסון', 'בר יהודה', 'בת גנים', 'הדר גנים', 'הדר המושבות', 'הדר המושבות החדשה', 'יוספטל', 'כפר אברהם', 'כפר גנים א', 'כפר גנים ב', 'כפר גנים ג', 'מחנה יהודה', 'מרכז העיר דרום', 'מרכז העיר צפון', 'משכנות גנים', 'נוה גן', 'נוה גנים', 'נוה דקלים', 'נוה עוז', 'סגולה', 'עין גנים', 'עמישב', 'צמרת גנים', 'קרול', 'קרית אלון', 'קרית אריה', 'קרית דוד אלעזר', 'קרית הרב סלומון', 'קרית מטלון', 'רמת ורבר', 'רמת סיב', 'שיכון הפועל המזרחי', 'שיכון מפם', 'שיפר+נוה דקלים', 'שעריה', 'תקומה', );
    	$count = 100;
    	foreach ( $sub_cities as $sub_city ) {
    		$states[ substr( $city_code, 0, 2 ) ][ $city_code . $count ] = $states[ substr( $city_code, 0, 2 ) ][ $city_code ] . ' - ' . $sub_city;
    		$count++;
    	}
    	unset( $states[ substr( $city_code, 0, 2 ) ][ $city_code ] );
    	return $states;
    }

    במידה והחנות ממוקמת בפתח תקווה עדכני את מיקום החנות בהגדרות ווקומרס.

    (example of how to split a city into smaller areas)

    Plugin Author Condless

    (@condless)

    היי,
    צור אזור משלוח נוסף ובחר בו את מדינת ישראל ושיטת משלוח של איסוף מקומי, ברשימת אזורי המשלוח גרור אותו אל מתחת אזור המשלוח של הערים, כך כל הערים שאינן מתאימות לחדרה-גדרה ישויכו אליו.
    לאחר שהלקוח יזין את הכתובת שלו בעמוד התשלום יופיע באפשרויות המשלוח רק איסוף מקומי

    Plugin Author Condless

    (@condless)

    היי, פנה אלינו באימייל או דרך טופס ההתקשרות, פרטי הקשר מופיעים באתר שלנו

    Plugin Author Condless

    (@condless)

    פלוניל שלום,
    בדוקומנטציה של התוסף (הקישור נמצא בעמוד התוסף באתר של וורדפרס) ישנה רשימת הערים שבין חדרה לגדרה, על מנת להכניס בבת אחת את כולן לאזור משלוח כלשהו- השתמש בכלי הבחירה הקבוצתית שבהגדרות תוסף (העתק לתוכו את רשימת הערים, בחר “ישראל” ואת אזור המשלוח אליו תרצה להכניס אותן).

    כמות מינימלית של מוצרים למשלוח תוכל להגדיר בעזרת תוסף של:
    Conditional Shipping for WooCommerce

    אם יש לך שאלות נוספות פתח שרשור תמיכה חדש ונשמח לעזור

Viewing 15 replies - 361 through 375 (of 388 total)