Questions tagged [genesis]

The Genesis Framework is a premium parent theme / framework for WordPress. It contains the user functionality and SEO benefits that is used by free and premium child themes.

See also

322 questions
2
votes
2 answers

how to post form to another php file in wordpress?

So my app theme structure is -wp-content -themes -cool -templates -landing.php - post-landing.php I have a form in landing.php and I want to handle POST request in post-landing.php for which I have, form…
JyotiChhetri
  • 289
  • 1
  • 7
  • 21
2
votes
1 answer

Add Genesis author box content wrapper

I need to add a wrapper div around all the content within the author box. What filter code do I need to change the genesis_author_box into this:
2
votes
2 answers

Remove comment author link wordpress

i have Genesis Magazine Pro Theme and i want to delete comment author link. I use many different guide: http://wpsquare.com/remove-comment-author-website-link-wordpress/ https://www.engagewp.com/remove-wordpress-comment-author-link/ I add some code…
supap
  • 89
  • 9
2
votes
1 answer

remove extra Woocommerce product title from Genesis

We're using a child theme of Genesis. woocommerce.php contains:
Steve
  • 2,066
  • 13
  • 60
  • 115
2
votes
0 answers

How can i change search result to google search result with Existing code in Genesis WordPress?

I created a search Box by adding add_filter() code in my child theme function.php page . The code is : function add_search_to_wp_menu ( $items, $args ) { if( 'primary' === $args -> theme_location ) { $items .= '
2
votes
1 answer

wordpress widget_title filter not working in primary sidebar

I have a little problem and I have no clue why this is not working. I have made small function add_filter( 'widget_title', 'tbw_html_widget_title', 10 ); function tbw_html_widget_title( $title ) { //HTML tag opening/closing brackets …
Toby Hage
  • 33
  • 7
2
votes
2 answers

Overwrite the Genesis single page template?

I'm having to work with a site using a genesis child theme and want to overwrite the default single post layout. I've created a new single.php file which I've upladed to the childtheme but genesis doesn't seem to be having any of it!? I've tried to…
bigdave
  • 337
  • 3
  • 15
2
votes
2 answers

Add CDN CSS before style.css in genesis

I'm not new to WordPress and using WordPress over 4 years. I want add extra external CSS from specific URL. I know how to add CSS from my theme. But I want add extra external CSS before style.css How to do this in genesis framework.
Menon Jats
  • 317
  • 3
  • 14
2
votes
1 answer

Genesis: Add nav into custom header function

I am trying to make a custom header function in a Genesis child theme that includes site title, description, nav, and one additional div. The nav does not show up with this code: remove_action( 'genesis_after_header', 'genesis_do_nav'…
user2521295
  • 823
  • 2
  • 12
  • 23
2
votes
3 answers

HTML5 Error on Body Element

When I run the W3C validator for this page: http://getinjuryanswers.com/practice-areas/dog-bites/, the outline view tells me: Body Element with no heading, Nav element with no heading, and Section element with no heading I can't add an H tag to…
user3117275
  • 367
  • 1
  • 5
  • 16
2
votes
1 answer

WordPress : How to make tablesort work with Genesis

I'm using WordPress and the Genesis framework and a child theme. I'm trying to use the jQuery plugin tablesorter to make a sortable table. I have a table created by PHP on a page template like so: In my…
2
votes
1 answer

Genesis - How to use a different template for post format 'gallery'?

within my Genesis child theme I have two different post formats (not types!): Standard and Gallery. When the user selects the Gallery he gets offered additional fields via the Advanced Custom Fields plugin. I know need to change the template of the…
Torben
  • 5,388
  • 12
  • 46
  • 78
2
votes
1 answer

How to make current page item in nav menu different color.

I am trying to make current page items in the sub-page nav menu of the below dev site a different color. By this I mean when you are on, for example, the page "Sample Page" here: http://yamina.squareeyes.com.au/catalogue/sample-page/ I want the…
Seamus
  • 35
  • 3
  • 6
2
votes
3 answers

How do I center the post title?

How do I center the title "BOASISH IS UNDER CONSTRUCTION" but keep By Kyle Boas · Follow: Twitter, Google+ September 4, 2014 as it is. My website is http://boasish.com, if you get a error page then use http://orangina.asmallorange.com/~boasishc/ as…
Kyle Boas
  • 45
  • 1
  • 7
1
vote
1 answer

Notice: Undefined index: content in onboarding.php on line 43

I'm getting this error and not sure why. Here's my code : $genesis_sample_shared_content = genesis_get_config( 'onboarding-shared' ); return [ 'starter_packs' => [ 'black-white' => [ 'title' => __( 'Black & White',…
1
2
3
21 22