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.
Questions tagged [genesis]
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 .= '

user2986042
- 1,098
- 2
- 16
- 37
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…