Key | Name | Labels | Description | Attachments | Status | Resolution | Current Environment | Dates |
---|---|---|---|---|---|---|---|---|
PRESSWEB-24 | Adjust for mobile view & remove extra empty space |
See the attached image
Adjust the site to look well on mob...
See the attached image
Adjust the site to look well on mobile, especially this page https://pressblk.com/pre-sale/ |
|
Done | Done | -- |
|
|
PRESSWEB-23 | Update the PHP code in WP site (fix this issue on the https://pressblk.com/) |
in the wp-config I have disabled debuttiong for now.
else...
in the wp-config I have disabled debuttiong for now.
else the following error is showing. this need to be fixed. *Notice*: Function get_cart was called *incorrectly*. Get cart should not be called before the wp_loaded action. Backtrace: require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Install::check_version, WC_Install::install, WC_Install::install_core, WC_Install::create_options, add_option, get_option, apply_filters('pre_option_woocommerce_enable_guest_checkout'), WP_Hook->apply_filters, pms_woo_guest_checkout_status, pms_woo_subscription_in_cart, WC_Cart->get_cart, wc_doing_it_wrong Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in */var/www/vhosts/pressblk.com/httpdocs/wp-includes/functions.php* on line *6121* *Notice*: Function get_cart was called *incorrectly*. Get cart should not be called before the wp_loaded action. Backtrace: require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Install::check_version, WC_Install::install, WC_Install::install_core, WC_Install::create_options, add_option, get_option, apply_filters('pre_option_woocommerce_enable_guest_checkout'), WP_Hook->apply_filters, pms_woo_guest_checkout_status, pms_woo_subscription_in_cart, WC_Cart->get_cart, WC_Cart_Session->get_cart_from_session, do_action('woocommerce_cart_loaded_from_session'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Cart_Session->set_session, WC_Cart_Session->get_cart_for_session, WC_Cart->get_cart, wc_doing_it_wrong Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in */var/www/vhosts/pressblk.com/httpdocs/wp-includes/functions.php* on line *6121* *Notice*: Function get_cart was called *incorrectly*. Get cart should not be called before the wp_loaded action. Backtrace: require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Install::check_version, WC_Install::install, WC_Install::install_core, WC_Install::create_options, add_option, get_option, apply_filters('pre_option_woocommerce_enable_guest_checkout'), WP_Hook->apply_filters, pms_woo_guest_checkout_status, pms_woo_subscription_in_cart, WC_Cart->get_cart, WC_Cart_Session->get_cart_from_session, WC_Cart_Session->get_cart_for_session, WC_Cart->get_cart, wc_doing_it_wrong Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in */var/www/vhosts/pressblk.com/httpdocs/wp-includes/functions.php* on line *6121* *Notice*: Function get_cart was called *incorrectly*. Get cart should not be called before the wp_loaded action. Backtrace: require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Install::check_version, WC_Install::install, WC_Install::install_core, WC_Install::create_options, add_option, get_option, apply_filters('pre_option_woocommerce_enable_guest_checkout'), WP_Hook->apply_filters, pms_woo_guest_checkout_status, pms_woo_subscription_in_cart, WC_Cart->get_cart, WC_Cart_Session->get_cart_from_session, WC_Cart->calculate_totals, WC_Cart->is_empty, WC_Cart->get_cart, wc_doing_it_wrong Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in */var/www/vhosts/pressblk.com/httpdocs/wp-includes/functions.php* on line *6121* *Notice*: Function get_cart was called *incorrectly*. Get cart should not be called before the wp_loaded action. Backtrace: require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), WP_Hook->do_action, WP_Hook->apply_filters, WC_Install::check_version, WC_Install::install, WC_Install::install_core, WC_Install::create_options, add_option, get_option, apply_filters('pre_option_woocommerce_enable_guest_checkout'), WP_Hook->apply_filters, pms_woo_guest_checkout_status, pms_woo_subscription_in_cart, WC_Cart->get_cart, WC_Cart_Session->get_cart_from_session, WC_Cart->calculate_totals, WC_Cart_Session->set_session, WC_Cart_Session->get_cart_for_session, WC_Cart->get_cart, wc_doing_it_wrong Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in */var/www/vhosts/pressblk.com/httpdocs/wp-includes/functions.php* on line *6121* *-------------------* This error is occurring because the WooCommerce cart is being accessed too early in the WordPress loading process, specifically before the {{wp_loaded}} action has fired. The issue is coming from the PMS (Paid Member Subscriptions) plugin's WooCommerce integration. Here are several ways to fix this issue: h2. Solution 1: Hook to the Correct Action The most proper fix is to modify the PMS plugin code to wait for the appropriate WordPress action. You'll need to edit the PMS plugin file that contains the {{pms_woo_guest_checkout_status}} function. Look for this function and modify it to check if WordPress is fully loaded: php Copy {{function pms_woo_guest_checkout_status($value) { // Don't run before wp_loadedif (!did_action('wp_loaded')) { return $value; } // Original function code hereif (pms_woo_subscription_in_cart()) { // Your logic here } return $value; }}} h2. Solution 2: Delay the Hook Registration Find where the filter is added (likely in the PMS plugin's main file) and delay it: php Copy {{// Instead of adding the filter immediately, wait for wp_loadedadd_action('wp_loaded', function() { add_filter('pre_option_woocommerce_enable_guest_checkout', 'pms_woo_guest_checkout_status'); });}} h2. Solution 3: Check if Cart is Available Modify the {{pms_woo_subscription_in_cart}} function to safely check for the cart: php Copy {{function pms_woo_subscription_in_cart() { // Check if WooCommerce is active and cart is availableif (!function_exists('WC') || !WC()->cart) { return false; } // Check if we're past the wp_loaded actionif (!did_action('wp_loaded')) { return false; } // Now safely get the cart$cart = WC()->cart->get_cart(); // Your subscription checking logic hereforeach ($cart as $cart_item) { // Check if item is a subscription } return false; }}} h2. Solution 4: Plugin-Specific Fix If you're using the Paid Member Subscriptions plugin, you can create a custom plugin or add to your theme's {{functions.php}}: php Copy {{// Remove the problematic filter temporarilyremove_filter('pre_option_woocommerce_enable_guest_checkout', 'pms_woo_guest_checkout_status');// Re-add it after wp_loadedadd_action('wp_loaded', function() { add_filter('pre_option_woocommerce_enable_guest_checkout', 'pms_woo_guest_checkout_status'); });}} h2. Solution 5: Contact Plugin Developer Since this appears to be a bug in the PMS plugin, the best long-term solution is to: # Contact the plugin developer # Report this issue with the backtrace you provided # Request an update that properly handles the WordPress loading sequence h2. Temporary Workaround If you need a quick fix and can't modify the plugin code, you can suppress these specific notices by adding this to your {{wp-config.php}}: php Copy {{// Suppress WooCommerce cart timing notices (temporary fix)if (!defined('WC_DOING_IT_WRONG_SUPPRESS')) { define('WC_DOING_IT_WRONG_SUPPRESS', true); }}} *Note:* This only hides the notices but doesn't fix the underlying issue. h2. Recommended Approach I recommend *Solution 3* as it's the safest approach that checks for all necessary conditions before accessing the cart. This ensures the code works properly regardless of when it's called during the WordPress loading process. The root cause is that the PMS plugin is trying to check the cart contents during the {{init}} action to determine guest checkout settings, but WooCommerce requires the cart to only be accessed after {{wp_loaded}}. |
|
Backlog | Unresolved | -- |
|
|
PRESSWEB-22 | PM task | Backlog | Unresolved | -- |
|
|||
PRESSWEB-21 | create a header for Facebook, Linkedin accounts |
|
create a header for Press black, include the screenshots of ...
create a header for Press black, include the screenshots of the application and happy customers. give us 3 variations.
|
|
Backlog | Unresolved | -- |
|
PRESSWEB-20 | Twilio - purchase of the phone number (support) |
|
Was with Michael on the phone and also on twilio site. submi...
Was with Michael on the phone and also on twilio site. submitting the ticket and reviewing the functionality.
|
Backlog | Unresolved | -- |
|
|
PRESSWEB-19 | Hook up the basic registration form https://pressblk.com/registration/ |
*Current Status:* Basic form created, needs enhancement
*...
*Current Status:* Basic form created, needs enhancement
*Required Improvements:* *1. Email Verification System* * Set up automated email confirmation upon registration * Create email template with verification link * User account remains inactive until email is verified * Add resend verification option *2. Form Field Enhancements* * Add required field validation * Include password strength indicator * Add "Confirm Password" field with matching validation * Implement real-time email format validation *3. User Experience Improvements* * Add loading spinner during form submission * Display success message after registration * Redirect to "Check your email" confirmation page * Add clear error messages for failed submissions *4. Security & Functionality* * Add CAPTCHA/spam protection * Implement rate limiting for registration attempts * Set up user role assignment (subscriber/pending) * Create welcome email sequence after verification *5. WordPress Integration* * Ensure proper WordPress user creation * Configure user permissions and capabilities * Set up user dashboard access post-verification (basic page) *Priority:* Email verification system is critical for user onboarding flow. -------------- for version 3 ----- site key 6LdPNowrAAAAALVE-qwCV8MrdRJZcpALW38ZNVAj secret key 6LdPNowrAAAAAL4HUNR3gAkDBCYuc7Pr-UiCHChi |
|
Backlog | Unresolved | -- |
|
|
PRESSWEB-18 | About us page - create a new page and link to the menu |
|
see the attached doc file and add content to the about us pa...
see the attached doc file and add content to the about us page.
assign the task to Anton to create a few images so page would look better |
|
Done | Done | -- |
|
PRESSWEB-17 | thank you page with video |
[https://drive.google.com/drive/folders/1zkLxeQ_qTePxTcTxCeh...
https://drive.google.com/drive/folders/1zkLxeQ_qTePxTcTxCehf46lavygW0jJ7?usp=sharing
add a thank you video to the pathnk you page https://pressblk.com/wp-admin/post.php?post=487&action=elementor |
|
Done | Done | -- |
|
|
PRESSWEB-16 | https://pressblk.com/lifetime/ - page fix |
|
# We need to implement payment flow on [https://pressblk.com...
# We need to implement payment flow on https://pressblk.com/lifetime page
# We need to implement "thank you" page to track purchases later on as part of PRESSWEB-15 task implementation |
|
In Progress | Unresolved | -- |
|
PRESSWEB-15 | Foundation Setup |
|
* Create and verify Instantly.ai account (Hyper Growth plan...
* Create and verify Instantly.ai account (Hyper Growth plan recommended)
* Set up 3-5 warm email addresses with aged domains (6+ months old) * Configure email authentication (SPF, DKIM, DMARC records) * Initiate email warm-up process (20 emails/day limit, increase by 1 daily) * Install Google Analytics 4 on WordPress site * Implement conversion tracking scripts on purchase pages * Set up UTM parameter tracking for campaign attribution |
In Progress | Unresolved | -- |
|
|
PRESSWEB-14 | Content & Data Management 528web.com |
Export from 528web.com
- Log into 528web.com admin panel
...
Export from 528web.com
- Log into 528web.com admin panel - Navigate to contact export section - *Export in CSV format with fields:* * First Name * Last Name * Email Address * Company Name * Industry (if available) * Location * Opt-in Date *Data Cleaning and Validation* - Remove duplicates - Validate email formats - Check against suppression lists - Segment by industry/location if data available *Import to Instantly.ai* - Upload CSV file to Instantly.ai - Map fields correctly - Create segments based on available data - Set up custom fields for personalization |
|
Backlog | Unresolved | -- |
|
|
PRESSWEB-13 | Email campaign preparation - Action List ( copy in the email to the client) |
|
h2. For Project Manager (Dmitry):
h3. Immediate Actions (Ne...
h2. For Project Manager (Dmitry):
h3. Immediate Actions (Next 1-2 days) * Follow up with Michael to obtain list of owned domains (excluding pressblk.com) * Request domain credentials from Michael for Instantly integration * Finalize Instantly setup based on previous suggestions once domains are provided * Verify that Michael has proceeded with "Growth Plan" on Instantly platform * Review attached screenshot referenced in email (if available) h3. Setup & Configuration (Next 3-5 days) * Prioritize integration of older domains first, then newer ones * Configure domain connections with Instantly platform * Test email deliverability for integrated domains * Ensure spam filter avoidance protocols are in place h3. Content & Campaign Management * Coordinate landing page URL update from {{/lifetime-membership-v2/}} to {{/pre-sale}} * Modify 2nd and 3rd email templates to include new landing page link (https://pressblk.com/pre-sale) * Ensure emails are properly targeted at Black business owners as specified * Complete final campaign setup and testing ---- h2. For Client (Michael): h3. Immediate Actions Required (Next 1-2 days) * URGENT: Provide complete list of owned domains (excluding pressblk.com) ** Suggested examples: pressblakapp.net, mypressblack.com, or similar * Supply domain credentials/access information for Instantly integration * Purchase "Growth Plan" on Instantly platform (as shown in screenshot) h3. Domain Management * Identify oldest domains in portfolio for priority setup * Ensure all provided domains are active and properly configured * Avoid using pressblk.com for email campaigns to protect main business domain h3. Coordination * Respond promptly to Dmitry's requests to avoid further delays * Review and approve final email campaign setup before launch * Confirm landing page URL change from {{/lifetime-membership-v2/}} to {{/pre-sale}} ---- h2. Timeline Considerations: * Critical: Domain information needed within 48 hours to prevent further project delays * Note: Original 21-day wait for pre-warmed emails from Instantly makes immediate action essential * Risk: Any delays could impact campaign launch timeline and business operations |
Backlog | Unresolved | -- |
|
|
PRESSWEB-12 | landing page update for a email campaign /pre-sale |
The landing page should follow the approved design, and the ...
The landing page should follow the approved design, and the final URL will be www.pressblk.com/pre-sale/. It should be based on the design of https://pressblk.com/lifetime-membership-v2/. Additionally, please replace the image of the man with the attached photo of the Black woman who is looking directly into the camera.
If the assistance of the designer is needed, ask Anton for the help (in the Verixity work Chat ) |
|
Done | Done | -- |
|
|
PRESSWEB-11 | Login credentials to the https://pressblk.com/ | user: admin password: GC3I~^#U@t2tN34~ [https://press... | Done | Done | -- |
|
||
PRESSWEB-10 | setup instantly account and hook up ChatGTP / AI for unique messages |
|
h2. Campaign Overview
*Launch Date:* July 8th, 2025
*Ta...
h2. Campaign Overview
*Launch Date:* July 8th, 2025 *Target:* 5,000 small business owners from 528web.com *Platform:* Instantly.ai *Goal:* Drive traffic to https://pressblk.com/lifetime/ for subscription purchases access to website: https://jira.verixity.com/browse/PRESSWEB-11 (credentials ) h2. Critical To-Do Checklist h3. Phase 1: Pre-Launch Setup (July 4-7, 2025) h4. Day 1 (July 4) - Foundation Setup - https://jira.verixity.com/browse/PRESSWEB-15 * Create and verify Instantly.ai account (Hyper Growth plan recommended) * Set up 3-5 warm email addresses with aged domains (6+ months old) * Configure email authentication (SPF, DKIM, DMARC records) * Initiate email warm-up process (20 emails/day limit, increase by 1 daily) * Install Google Analytics 4 on WordPress site * Implement conversion tracking scripts on purchase pages * Set up UTM parameter tracking for campaign attribution h4. Day 2 (July 5) - Content & Data Management - https://jira.verixity.com/browse/PRESSWEB-14 * Export contact list from 528web.com (5,000 contacts) * Clean and validate email data (remove duplicates, check formats) * Import contacts to Instantly.ai with proper field mapping * Create 3-email main sequence content * Write retargeting email templates (24-hour and cart abandonment) * Design mobile-responsive email templates h4. Day 3 (July 6) - Campaign Configuration * Set up email sequences in Instantly.ai (3-5 days between emails) * Configure A/B testing for subject lines and content * Set up retargeting automation triggers * Distribute contacts across warm email accounts * Set sending limits (50-100 emails per account per day) * Send test emails and verify all links/tracking h4. Day 4 (July 7) - Final Preparations * Complete final content review and compliance check * Verify WordPress tracking end-to-end * Confirm email authentication status * Schedule launch sequence for July 8th, 9:00 AM EST * Set up monitoring dashboard and alert notifications * Brief team on launch procedures h3. Phase 2: Launch & Monitoring (July 8+) h4. Launch Day Execution * *8:00 AM:* Final system checks and verification * *9:00 AM:* Launch first batch (1,000 contacts) * *11:00 AM:* Monitor initial performance metrics * *12:00 PM:* Continue rollout (remaining 4,000 contacts in 500-contact batches) * *6:00 PM:* Complete end-of-day performance analysis h4. Daily Monitoring Tasks * *Morning (9:00 AM):* Check deliverability metrics (bounce <2%, spam <0.1%) * *Afternoon (2:00 PM):* Analyze engagement and optimization opportunities * *Evening (6:00 PM):* Generate daily performance report h3. Phase 3: Success Metrics & Optimization h4. Target KPIs to Achieve * Delivery Rate: >98% * Open Rate: 25-35% * Click-Through Rate: 3-7% * Conversion Rate: 1-3% * Bounce Rate: <2% * Spam Complaint Rate: <0.1% h4. Weekly Optimization Tasks * *Week 1:* Test subject lines, send times, and content variations * *Week 2+:* Implement advanced segmentation and dynamic content * *Ongoing:* Refine retargeting sequences based on performance data h2. Critical Dependencies & Risks h3. Must Complete Before Launch * Minimum 14-day email warm-up period * Email authentication verification (SPF, DKIM, DMARC) * WordPress tracking implementation and testing * Compliance review (CAN-SPAM, GDPR, CCPA) h3. Contingency Plans Ready * Backup warm email addresses prepared * Alternative tracking methods documented * Technical support contacts identified * Campaign pause procedures established h2. Deliverables # *Daily Performance Reports* (starting July 8th) # *Weekly Optimization Recommendations* # *Campaign Performance Analysis* (end of campaign) # *Lessons Learned Documentation* ---- *📎 Attached:* Complete detailed project plan (email_campaign_project_plan.pdf) with technical specifications, email templates, code implementations, and step-by-step procedures. *⚠️ Priority:* This is a time-sensitive campaign with a fixed launch date. All pre-launch tasks must be completed by July 7th to ensure successful deployment. |
|
Backlog | Unresolved | -- |
|
PRESSWEB-9 | scraping information from website https://alum.howard.edu/alumni-resources/bison-business-directory |
+[https://alum.howard.edu/]++alumni-resources/bison-++busine...
+https://alum.howard.edu/++alumni-resources/bison-++business-directory+
over 800 emails scrapped (csv attached) |
|
Backlog | Unresolved | -- |
|
|
PRESSWEB-8 | scraping business information from https://iamblackbusiness.com/ |
[https://docs.google.com/spreadsheets/d/1zXgou4YOtz1Bq4yRZWj...
https://docs.google.com/spreadsheets/d/1zXgou4YOtz1Bq4yRZWjr1Z5_4JAYL9J2FE4Mvnm1BEU/edit?usp=sharing
over 2k emails scraped https://docs.google.com/spreadsheets/d/1CJoZnK6efpFBS9XsKtZvcLoKbE8Nz2pzkFF7BdxRCE4/edit?usp=sharing 800 more scraped ( 6/19/2025) 1 hour I scraped this site https://abc.iamblackbusiness.com/ https://www.blackwomenempowereddirectory.com/ Here’s the spreadsheet with the data: https://docs.google.com/spreadsheets/d/1QQK6O6EJvlLKhJbvJF55HX4cxdu0jDz0iFVuuv10WGw/edit?usp=sharing |
Backlog | Unresolved | -- |
|
||
PRESSWEB-7 | meetings - with Michael and team |
weekly meetings
|
Backlog | Unresolved | -- |
|
||
PRESSWEB-6 | scraping information from website championblackbusinesses.com | [https://docs.google.com/spreadsheets/d/1JiLzowAUDmhcVM... | Backlog | Unresolved | -- |
|
||
PRESSWEB-5 | Creation of the videos - for press black |
[https://drive.google.com/drive/folders/1SvckrFx-Emmx7nv2TJ5...
https://drive.google.com/drive/folders/1SvckrFx-Emmx7nv2TJ5lTXKJCWQDKQxK
Max Junior worked: 5 hours - 5 june 5 hours - 10 june |
Backlog | Unresolved | -- |
|
||
PRESSWEB-4 | create a landing page for lifetime subscription |
|
Backlog | Unresolved | -- |
|
||
PRESSWEB-3 | Create a registration form - process (from old website - archive attached) |
h3. Objective
Reconnect the new website, developed using ...
h3. Objective
Reconnect the new website, developed using Elementor, to the database and API to restore the functionality for registering new businesses, similar to the previous WordPress site. h3. Background The old website was fully integrated with the database and API, facilitating seamless registration processes. The new site must replicate this functionality to ensure a smooth user experience. Figma: https://www.figma.com/design/xKUkM3X1H2zJAmbaNXGB1Z/Press-Black-Web?node-id=143-4373&t=sWnSrKqBdeJwr8Oq-0 ( the registration process is attached - as screens to overview) h3. Tasks # *Review Old Website Documentation* * ** Analyze the attached documentation of the old WordPress website to understand the existing database and API connections. # *Database Integration* * ** Establish a connection between the new Elementor site and the existing database. ** Ensure that all necessary tables and fields are correctly mapped. # *API Integration* * ** Reconfigure the API endpoints as per the old site’s specifications. ** Test API calls to ensure data is being sent and received correctly. # *Registration Functionality* * ** Implement the business registration form on the new site. ** Ensure that the form submits data to the database via the API as it did on the old site. # *Testing* * ** Conduct thorough testing of the registration process to confirm that all functionalities are working as intended. ** Address any bugs or issues that arise during testing. h3. Deliverables * A fully functional registration system on the new Elementor site. * Documentation of the integration process for future reference. |
|
Backlog | Unresolved | -- |
|
|
PRESSWEB-2 | improve presentation for investors |
|
goal is to improve the presentation.
figma ->
[https:/...
goal is to improve the presentation.
figma -> https://www.figma.com/design/7o6sF0KBZ48W7HrqsfyC8b/Press-Black?node-id=2008-29042&node-type=canvas&t=LBxT1jy5RBYGuSix-0 https://www.figma.com/design/xKUkM3X1H2zJAmbaNXGB1Z/Press-Black-Web?node-id=817-2939&node-type=canvas&t=J7R7TU4UXcyp4pdn-0 -------------- PressBlk - Connecting Black Businesses to a Global Audience The Problem: Market Gap: Consumers seeking Black-owned businesses and products face significant challenges in locating desired goods and services. Despite the demand, there is no comprehensive platform designed to bridge this gap effectively. Customer Challenge: Black consumers spend approximately $300 billion annually on unsatisfactory products and services, indicating a lack of visibility and accessibility to quality, Black-owned offerings. Cost Barrier: Black entrepreneurs and business owners struggle with the high costs of promotional advertising, resulting in low visibility and missed revenue opportunities. Usability Issues: Consumers and business owners seek a seamless, easy-to-use platform that connects them without the hassle of navigating multiple disconnected channels. The Solution: Closing the Gap: PressBlk offers a dedicated mobile app that connects consumers directly to Black-owned businesses, making it easier for them to find, purchase, and support Black-owned products and services globally. No other app provides the same level of accessibility and convenience for this specific market. Cost Savings: By reducing the need for expensive advertising, PressBlk allows Black business owners to market their products more effectively and affordably, ensuring greater visibility and reach. Target Audience: A platform designed for all consumers in search of Black-owned goods and services, PressBlk creates a marketplace that elevates Black entrepreneurship by making their products easily discoverable and accessible. Ease of Use: PressBlk provides an intuitive, user-friendly app that simplifies the connection between businesses and consumers, fostering growth and empowering Black entrepreneurs through culturally conscious commerce. -------------------------- Max, Attached are the CV/ Resume of my advisory board. MR. Keenan Coningland, Mr. Curtis R. Bowers, Dr. Allen W. Toles. Executive team myself, Sky, Cameron and yourself. You can edit for spacing. Also, you will find a redlined critique from my investor. Please add specific information on pricing to the consumer (4.999 per month with a 10% discount if paid yearly) and business with the same option with Platinum receiving 15% discount, Gold receiving 10% discount, and Silver receiving 5% discount. After the initial free trial period and/or conjunction with our Beta testers. Our goal in the first year (Phase 1) is to reach 500k consumers and 20K business and entrepreneurs. Year two and three (Phase 2) our goal is to reach 3M consumers and 150K business. Ultimately, we would like to sustain 5M consumers on the platform annually. Funding Needed 500K-1M for Completion of APP (MVP2) and Beta Testing Marketing, Social Media, TV, Radio in targeted urban markets. Hiring Staff, COO and CFO, Sales team, as well IT/AI Support team. Facility Lease for headquarters. Regards, Michael |
|
Backlog | Unresolved | -- |
|
PRESSWEB-1 | Update the WordPress and resolve issues with account |
вопрос почему такой домен у нас вообще есть?
мне кажется ...
вопрос почему такой домен у нас вообще есть?
мне кажется хакнули сайт presspblack прошу разобратся https://h1.mybusinesspulse.com:8443/smb/web/overview/id/7/type/domain ---- я обновил DNS для главного сайта pressblk.com который на WP. |
|
In Progress | Unresolved | -- |
|
Key | Subject | Request | Attachments | Priority | Comments | Status | Resolution | Current Environment | Labels | Dates |
---|---|---|---|---|---|---|---|---|---|---|
PRESSWEB-21 | create a header for Facebook, Linkedin accounts |
create a header for Press black, include the screenshots of ...
create a header for Press black, include the screenshots of the application and happy customers. give us 3 variations.
|
|
High |
headers has been created. please verify attached.
|
Backlog | Unresolved | -- |
|
|
Key | Subject | Request | Attachments | Priority | Comments | Status | Resolution | Current Environment | Labels | Dates |
---|---|---|---|---|---|---|---|---|---|---|
PRESSWEB-20 | Twilio - purchase of the phone number (support) |
Was with Michael on the phone and also on twilio site. submi...
Was with Michael on the phone and also on twilio site. submitting the ticket and reviewing the functionality.
|
Medium | Backlog | Unresolved | -- |
|
|
||
PRESSWEB-18 | About us page - create a new page and link to the menu |
see the attached doc file and add content to the about us pa...
see the attached doc file and add content to the about us page.
assign the task to Anton to create a few images so page would look better |
|
High | Done | Done | -- |
|
|
|
PRESSWEB-16 | https://pressblk.com/lifetime/ - page fix |
# We need to implement payment flow on [https://pressblk.com...
# We need to implement payment flow on https://pressblk.com/lifetime page
# We need to implement "thank you" page to track purchases later on as part of PRESSWEB-15 task implementation |
|
Highest |
This is the update to this ticket.
here is one more update
This is stil lnot resolved. please update us on the status.
|
In Progress | Unresolved | -- |
|
|
PRESSWEB-15 | Foundation Setup |
* Create and verify Instantly.ai account (Hyper Growth plan...
* Create and verify Instantly.ai account (Hyper Growth plan recommended)
* Set up 3-5 warm email addresses with aged domains (6+ months old) * Configure email authentication (SPF, DKIM, DMARC records) * Initiate email warm-up process (20 emails/day limit, increase by 1 daily) * Install Google Analytics 4 on WordPress site * Implement conversion tracking scripts on purchase pages * Set up UTM parameter tracking for campaign attribution |
Highest | In Progress | Unresolved | -- |
|
|
||
PRESSWEB-13 | Email campaign preparation - Action List ( copy in the email to the client) |
h2. For Project Manager (Dmitry):
h3. Immediate Actions (Ne...
h2. For Project Manager (Dmitry):
h3. Immediate Actions (Next 1-2 days) * Follow up with Michael to obtain list of owned domains (excluding pressblk.com) * Request domain credentials from Michael for Instantly integration * Finalize Instantly setup based on previous suggestions once domains are provided * Verify that Michael has proceeded with "Growth Plan" on Instantly platform * Review attached screenshot referenced in email (if available) h3. Setup & Configuration (Next 3-5 days) * Prioritize integration of older domains first, then newer ones * Configure domain connections with Instantly platform * Test email deliverability for integrated domains * Ensure spam filter avoidance protocols are in place h3. Content & Campaign Management * Coordinate landing page URL update from {{/lifetime-membership-v2/}} to {{/pre-sale}} * Modify 2nd and 3rd email templates to include new landing page link (https://pressblk.com/pre-sale) * Ensure emails are properly targeted at Black business owners as specified * Complete final campaign setup and testing ---- h2. For Client (Michael): h3. Immediate Actions Required (Next 1-2 days) * URGENT: Provide complete list of owned domains (excluding pressblk.com) ** Suggested examples: pressblakapp.net, mypressblack.com, or similar * Supply domain credentials/access information for Instantly integration * Purchase "Growth Plan" on Instantly platform (as shown in screenshot) h3. Domain Management * Identify oldest domains in portfolio for priority setup * Ensure all provided domains are active and properly configured * Avoid using pressblk.com for email campaigns to protect main business domain h3. Coordination * Respond promptly to Dmitry's requests to avoid further delays * Review and approve final email campaign setup before launch * Confirm landing page URL change from {{/lifetime-membership-v2/}} to {{/pre-sale}} ---- h2. Timeline Considerations: * Critical: Domain information needed within 48 hours to prevent further project delays * Note: Original 21-day wait for pre-warmed emails from Instantly makes immediate action essential * Risk: Any delays could impact campaign launch timeline and business operations |
High | Backlog | Unresolved | -- |
|
|
||
PRESSWEB-10 | setup instantly account and hook up ChatGTP / AI for unique messages |
h2. Campaign Overview
*Launch Date:* July 8th, 2025
*Ta...
h2. Campaign Overview
*Launch Date:* July 8th, 2025 *Target:* 5,000 small business owners from 528web.com *Platform:* Instantly.ai *Goal:* Drive traffic to https://pressblk.com/lifetime/ for subscription purchases access to website: https://jira.verixity.com/browse/PRESSWEB-11 (credentials ) h2. Critical To-Do Checklist h3. Phase 1: Pre-Launch Setup (July 4-7, 2025) h4. Day 1 (July 4) - Foundation Setup - https://jira.verixity.com/browse/PRESSWEB-15 * Create and verify Instantly.ai account (Hyper Growth plan recommended) * Set up 3-5 warm email addresses with aged domains (6+ months old) * Configure email authentication (SPF, DKIM, DMARC records) * Initiate email warm-up process (20 emails/day limit, increase by 1 daily) * Install Google Analytics 4 on WordPress site * Implement conversion tracking scripts on purchase pages * Set up UTM parameter tracking for campaign attribution h4. Day 2 (July 5) - Content & Data Management - https://jira.verixity.com/browse/PRESSWEB-14 * Export contact list from 528web.com (5,000 contacts) * Clean and validate email data (remove duplicates, check formats) * Import contacts to Instantly.ai with proper field mapping * Create 3-email main sequence content * Write retargeting email templates (24-hour and cart abandonment) * Design mobile-responsive email templates h4. Day 3 (July 6) - Campaign Configuration * Set up email sequences in Instantly.ai (3-5 days between emails) * Configure A/B testing for subject lines and content * Set up retargeting automation triggers * Distribute contacts across warm email accounts * Set sending limits (50-100 emails per account per day) * Send test emails and verify all links/tracking h4. Day 4 (July 7) - Final Preparations * Complete final content review and compliance check * Verify WordPress tracking end-to-end * Confirm email authentication status * Schedule launch sequence for July 8th, 9:00 AM EST * Set up monitoring dashboard and alert notifications * Brief team on launch procedures h3. Phase 2: Launch & Monitoring (July 8+) h4. Launch Day Execution * *8:00 AM:* Final system checks and verification * *9:00 AM:* Launch first batch (1,000 contacts) * *11:00 AM:* Monitor initial performance metrics * *12:00 PM:* Continue rollout (remaining 4,000 contacts in 500-contact batches) * *6:00 PM:* Complete end-of-day performance analysis h4. Daily Monitoring Tasks * *Morning (9:00 AM):* Check deliverability metrics (bounce <2%, spam <0.1%) * *Afternoon (2:00 PM):* Analyze engagement and optimization opportunities * *Evening (6:00 PM):* Generate daily performance report h3. Phase 3: Success Metrics & Optimization h4. Target KPIs to Achieve * Delivery Rate: >98% * Open Rate: 25-35% * Click-Through Rate: 3-7% * Conversion Rate: 1-3% * Bounce Rate: <2% * Spam Complaint Rate: <0.1% h4. Weekly Optimization Tasks * *Week 1:* Test subject lines, send times, and content variations * *Week 2+:* Implement advanced segmentation and dynamic content * *Ongoing:* Refine retargeting sequences based on performance data h2. Critical Dependencies & Risks h3. Must Complete Before Launch * Minimum 14-day email warm-up period * Email authentication verification (SPF, DKIM, DMARC) * WordPress tracking implementation and testing * Compliance review (CAN-SPAM, GDPR, CCPA) h3. Contingency Plans Ready * Backup warm email addresses prepared * Alternative tracking methods documented * Technical support contacts identified * Campaign pause procedures established h2. Deliverables # *Daily Performance Reports* (starting July 8th) # *Weekly Optimization Recommendations* # *Campaign Performance Analysis* (end of campaign) # *Lessons Learned Documentation* ---- *📎 Attached:* Complete detailed project plan (email_campaign_project_plan.pdf) with technical specifications, email templates, code implementations, and step-by-step procedures. *⚠️ Priority:* This is a time-sensitive campaign with a fixed launch date. All pre-launch tasks must be completed by July 7th to ensure successful deployment. |
|
High | Backlog | Unresolved | -- |
|
|
|
PRESSWEB-2 | improve presentation for investors |
goal is to improve the presentation.
figma ->
[https:/...
goal is to improve the presentation.
figma -> https://www.figma.com/design/7o6sF0KBZ48W7HrqsfyC8b/Press-Black?node-id=2008-29042&node-type=canvas&t=LBxT1jy5RBYGuSix-0 https://www.figma.com/design/xKUkM3X1H2zJAmbaNXGB1Z/Press-Black-Web?node-id=817-2939&node-type=canvas&t=J7R7TU4UXcyp4pdn-0 -------------- PressBlk - Connecting Black Businesses to a Global Audience The Problem: Market Gap: Consumers seeking Black-owned businesses and products face significant challenges in locating desired goods and services. Despite the demand, there is no comprehensive platform designed to bridge this gap effectively. Customer Challenge: Black consumers spend approximately $300 billion annually on unsatisfactory products and services, indicating a lack of visibility and accessibility to quality, Black-owned offerings. Cost Barrier: Black entrepreneurs and business owners struggle with the high costs of promotional advertising, resulting in low visibility and missed revenue opportunities. Usability Issues: Consumers and business owners seek a seamless, easy-to-use platform that connects them without the hassle of navigating multiple disconnected channels. The Solution: Closing the Gap: PressBlk offers a dedicated mobile app that connects consumers directly to Black-owned businesses, making it easier for them to find, purchase, and support Black-owned products and services globally. No other app provides the same level of accessibility and convenience for this specific market. Cost Savings: By reducing the need for expensive advertising, PressBlk allows Black business owners to market their products more effectively and affordably, ensuring greater visibility and reach. Target Audience: A platform designed for all consumers in search of Black-owned goods and services, PressBlk creates a marketplace that elevates Black entrepreneurship by making their products easily discoverable and accessible. Ease of Use: PressBlk provides an intuitive, user-friendly app that simplifies the connection between businesses and consumers, fostering growth and empowering Black entrepreneurs through culturally conscious commerce. -------------------------- Max, Attached are the CV/ Resume of my advisory board. MR. Keenan Coningland, Mr. Curtis R. Bowers, Dr. Allen W. Toles. Executive team myself, Sky, Cameron and yourself. You can edit for spacing. Also, you will find a redlined critique from my investor. Please add specific information on pricing to the consumer (4.999 per month with a 10% discount if paid yearly) and business with the same option with Platinum receiving 15% discount, Gold receiving 10% discount, and Silver receiving 5% discount. After the initial free trial period and/or conjunction with our Beta testers. Our goal in the first year (Phase 1) is to reach 500k consumers and 20K business and entrepreneurs. Year two and three (Phase 2) our goal is to reach 3M consumers and 150K business. Ultimately, we would like to sustain 5M consumers on the platform annually. Funding Needed 500K-1M for Completion of APP (MVP2) and Beta Testing Marketing, Social Media, TV, Radio in targeted urban markets. Hiring Staff, COO and CFO, Sales team, as well IT/AI Support team. Facility Lease for headquarters. Regards, Michael |
|
Highest | Backlog | Unresolved | -- |
|
|