maanse
Forum Replies Created
-
Forum: Plugins
In reply to: [Five Star Restaurant Menu and Food Ordering] Extra columns in menuHi,
Thanks for the quick reply, Ive never used WP’s hook system and my PHP is quite basic but having said that im will to give it a go. What’s the worst that can happen…… (site backup first i think)
Forum: Fixing WordPress
In reply to: Woocommerce shop base page display orderIf you’re putting code in templates:
array(
‘number’ => ‘null’,
‘orderby’ => ‘name’,
‘order’ => ‘ASC’,
‘columns’ => ‘4’,
‘hide_empty’ => ‘1’,
‘parent’ => ”,
‘ids’ => ”
)
If you’re using the shortcodes:[product_categories number=”12″ parent=”0″ …etc]
I couldn’t get orderby=”name” to work when I just tested, but orderby=”date” worked like I thought “name” would. Such fun!
Actually i haven’t put anything in the page. All i have done is in the woocommerce settings set the shop base page to this particular page. When i edit the page it is completely blank, so i assume there is some kind of default template somewhere.
Forum: Plugins
In reply to: responsive select menu not working properlyJust figured out that if i disable ubermenu from the menu location (so it doesnt appear on the website) the responsive select menu works perfectly.
It seems to be ubermenu causing a few issues with this site. Its also giving me an issue with the image slider not working too.
Any Suggestions?
Forum: Fixing WordPress
In reply to: Gettin child page linksThanks for this, your right about over complicating. Didnt know this function existed…
Ill have a read, thanks again.
Forum: Fixing WordPress
In reply to: Gettin child page linksthat would be a lot of menus to create.
Forum: Fixing WordPress
In reply to: Featured image of child pagesYep understood perfectly, thanks.
Just one more thing, any suggestions on how i can line the thumbnails up in rows of 3? I had initially thought of using floats but the problem is im going to have more than 3 thumbnails on most pages….
Any suggestions?
Forum: Fixing WordPress
In reply to: Custom Theme SupportApologies i have managed to solve my problem, i added an array to ‘register_nav_menus’. my code now looks like:
function inkthemes_register_custom_menu() { /* register_nav_menu('custom_menu', __('Main Menu', 'themia')); register_nav_menu('second_menu', __('Second Menu', 'themia'));*/ register_nav_menus( array( 'custom_menu' => 'Main Menu', 'second_menu' => 'Second Menu', ) ); }
Forum: Fixing WordPress
In reply to: Missing footer imagethe HTMl for the image is:
<img src="wp-content/themes/golf/sponsors.png" alt="sponsors" width="70%" height="100%"/>
Forum: Fixing WordPress
In reply to: contact form to csvFantastic, i had wondered what the page template was for. Now i know, much appreciated, thanks.
Forum: Fixing WordPress
In reply to: contact form to csvThat sounds like it would work but im not sure how i would do such a task.