This topic is locked
[SOLVED]

 WordPress PHPR Menu

11/30/2020 2:47:00 PM
PHPRunner General questions
A
asawyer13 authorDevClub member

In looking at the WordPress PHPRunner plugin, it looks like the PHPR menu shows on the left.
Is there a way to only show the form that you want like the Customer list, and not show the menu on the left?
Alan

HJB 11/30/2020

It seems as if the tiny white left sided triangle seen within the upper blue row is clickable =

once clicked, is closing the left menu and so, what is coded to work under on- and off switching

can certainly be made permanent too, if wished. Just for inspiration ...

fhumanes 11/30/2020

You can look at this article.
https://asprunner.com/forums/topic/26898-integrate-phprunner-data-into-wordpress/
I think it answers your question.
Regard ,
fernando

A
asawyer13 authorDevClub member 11/30/2020



It seems as if the tiny white left sided triangle seen within the upper blue row is clickable =

once clicked, is closing the left menu and so, what is coded to work under on- and off switching

can certainly be made permanent too, if wished. Just for inspiration ...


A
acpan 11/30/2020

Have you tried to hide the menu?

  1. Go to page designer and identify the itemid of the menu.
  2. Before display event:
    Item ID in my case is "menu":
    To hide:

    $pageObject->hideItem("menu");

    To show:

    $pageObject->showItem("menu");
    More info:
    find the itemid: https://xlinesoft.com/phprunner/docs/getting-item-id.htm


    In looking at the WordPress PHPRunner plugin, it looks like the PHPR menu shows on the left.
    Is there a way to only show the form that you want like the Customer list, and not show the menu on the left?
    Alan

A
asawyer13 authorDevClub member 11/30/2020



Have you tried to hide the menu?

  1. Go to page designer and identify the itemid of the menu.
  2. Before display event:
    Item ID in my case is "menu":
    To hide:

    $pageObject->hideItem("menu");

    To show:

    $pageObject->showItem("menu");
    More info:
    find the itemid: https://xlinesoft.com/phprunner/docs/getting-item-id.htm


Thanks for the clarification.

Alan