Viewing 11 replies - 1 through 11 (of 11 total)
  • I had the same problem, I discovered several hour later that it is hidden within the products section.

    If you hover over the products section on the left hand menu in wordpress admin you will see smart manager at the bottom.

    The developer makes out that it creates a new main link but its a sub link within products menu, they should better explain this as I could not find it at first

    Thread Starter kausikc

    (@kausikc)

    I have Woocommerce. I am not seeing under Products menu either.

    Plugin Contributor Ratnakar

    (@ratnakardubey)

    Have you activated the plugin?

    If still you are not getting the link, please open a support ticket from Store Apps Support

    Thread Starter kausikc

    (@kausikc)

    Of course, I activated it.

    I’ll submit a support ticket.

    Thread Starter kausikc

    (@kausikc)

    By the way, this is the error I am getting:

    Notice: Undefined index: page in /var/www/wp-content/plugins/smart-manager-for-wp-e-commerce/smart-manager.php on line 109

    First line from this code is giving the error. I am assuming it is for $_GET[‘page’] .

    if ($_GET[‘page’] == “smart-manager-woo” || $_GET[‘page’] == “smart-manager-wpsc”) {
    wp_enqueue_media();
    wp_enqueue_script( ‘custom-header’ );
    }

    Plugin Contributor Ratnakar

    (@ratnakardubey)

    Replace this line of code:

    if ($_GET['page'] == "smart-manager-woo" || $_GET['page'] == "smart-manager-wpsc") {

    with this:

    if (isset($_GET['page']) && $_GET['page'] == "smart-manager-woo" || $_GET['page'] == "smart-manager-wpsc") {

    This should remove that message.

    Also these notices are PHP notices & it will not affect any functionality of Smart Manager or any other plugins. These notices appear only when ‘WP_DEBUG’ is enabled on your site.

    Thread Starter kausikc

    (@kausikc)

    Thanks Ratnakar. I tried that code change already before posting. That stops the message, but does not fix the issue.

    Plugin Contributor Ratnakar

    (@ratnakardubey)

    @kausikc Is Smart Manager link started appearing in admin menu?

    You were about to submit a support ticket related to this, but we didn’t find it yet in our support ticket system.

    Thread Starter kausikc

    (@kausikc)

    Sorry, I could not find a way to open support ticket. But just sent an email through your contact form.

    Did this ever get figured out? Because I am having the same issue on my installation. I have latest version of woocommerce and wp. Please assist. Thanks.

    Plugin Author storeapps

    (@storeapps)

    @collieherb Have you checked under ‘Products’ menu? Is Smart Manager activated?

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘No admin menu’ is closed to new replies.