I am using sonata admin as my backend, and there is a list of the modules(services) here.
When I clicked on left side menu links, it will redirect me to listing page.
Now I have one module in where I do not want listing page, but I want a page like below where I can directly have the fields and update the values in the database everytime same as the setting page. Where I can have the columns just I update the values.
Please enlighten me for the same.
Thanks in advance.
Menu in Sonata Admin is based on KNP Menu. So depending on what you really need to add there are some ways to customise it using:
custom controller
menu provider
extending the menu
Details in the docs.
Related
I want to add some extra form fields to an existing page in Wordpress.
This page is where you are redirected whenever you edit a post or page.
My problem is I don't know where to find this file or what its called.
I need to know what file i need to edit in order to be able to add the new inputs.
this page would only be seen if you are an administrator and logged in and in dashboard.
I'm using wordpress edge shuffle theme.
The easiest way to solve this is to use Advanced Custom Fields. ACF allows you to specify custom fields that appear on certain edit pages in the admin. You'll then have custom data to use on your frontend templates.
Check out this tutorial for more.
For me, as I was just trying to figure out how to edit my posts page
While logged on to my admin account to edit, I went to my actual page and the top admin bar had an option of "customize" and that took me where I needed to go to add some css
I want to create a custom page template in WordPress which shows Image Slideshow and then a video below it and finally some text - till now what I am able to do is play with sidebar, footer, header.
I can either remove them or keep them in my custom page templates but what I want to do is play with the page contents.
The Admin user should be able to see these sections in the Page Editor (WYSIWYG) when they choose the Template from the drop-down, so that they can accordingly add the correct content in correct place holders
Something like the attached screen-shot is showing
Is this possible in WordPress
Yes! It's possible to implement this! you can use https://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431 or https://wordpress.org/plugins/siteorigin-panels/ plugin.
The first plugin allows you to create different page layout and save it. It also allows admin to choose page layout that admin has saved previously.
The second page builder plugin allows you to create template same way and allows admin to clone one page layout to another one.
Hope this will help you!
Is it possible to implement a new admin menu in Drupal 7?
Currently I am using Seven theme.
What I want to do is adding another tab on the Content menu with just: Comment, Comment to content, Comment, Submission.
I added a new menu on the admin menu structure, but the menu is not showing anywhere.
I made page--admin--content--submission.tpl.php to start making the interface, but I can't make it according to the current selected admin theme.
Please point me somewhere since I already googled with no luck.
Update screenshot :
Did you try clearing your cache? You can do that via the Performance page, at yoursite.com/admin/config/development/performance.
I'm working with a clients website and their "tags" section was removed from the wordpress backend sidebar. How do I re-add it? and How will they be able to add two worded tags?
The Admin Menu Editor plugin is the easiest way to customize the Admin menu. Tags are located under the Posts item. You should be able to add them back this way.
I would like to create a menu in Drupal backend, a custom menu which have xxx items.
How can I use the Drupal API to retrieve it in a template.tpl.php, and display items?
have a look at this page at drupal.org: Menu theming
-J
I created a custom menu using this method as well as some related ones. You will need to generate a custom module for your menu. You won't retrieve it in template.tpl.php but rather as a block (by creating a custom module). I would suggest you start there first.
I would do the following:
Create a custom menu
Create a new regions in your template .info file
Go to your theme and print the new region where the menu should seen
Go to the blogs and activate the new menu in the new region area
Maybe this should work for you.