Forum Replies Created
-
AuthorPosts
-
November 19, 2022 at 2:05 am in reply to: Forum Dead and Useless. Genesis outdated? Is it time to jump ship ? #506201
Brad Dalton
ParticipantThere are thousands of tutorials out there that provide support for Genesis child themes.
Why don't you publish your theme on Github and link to it so the community has direct access and can contribute.
Brad Dalton
ParticipantHere's your themes default blockquote CSS
blockquote, blockquote::before { color: #888; } blockquote { margin: 40px; } blockquote::before { content: "\201C"; display: block; font-size: 30px; height: 0; left: -20px; position: relative; top: -10px; }
You can modify this CSS yourself to change the styling.
Brad Dalton
ParticipantAs long as its WordPress, your content will be saved in the database and you can use another theme like Infinity Pro.
Brad Dalton
ParticipantTry this theme demo https://www.studiopress.com/themes/infinity/#demo-full
November 4, 2022 at 8:07 am in reply to: Customize WooCoomerce category with extra text field #506125Brad Dalton
ParticipantSure. Please book a consultation https://wpsites.net/product/hourly-consulting/
Brad Dalton
ParticipantNever edit Genesis however you can modify or delete code in any StudioPress/Genesis child theme.
Brad Dalton
ParticipantCheck in the functions file to see if they are loaded and delete the code if applicable.
Brad Dalton
ParticipantNovember 1, 2022 at 9:38 am in reply to: Customize WooCoomerce category with extra text field #506093Brad Dalton
ParticipantYou need 2 things :
1. A input field for the text
2. Code to output the text using a Genesis, WooCommerce or WordPress hook.You can use code or a plugin like ACF to add the input field on your Edit Product Category page and then you'll need code for the output.
Brad Dalton
ParticipantYou can use the Genesis SEO settings to change this or filter the site title and change the HTML tags.
Brad Dalton
ParticipantSure does and Genesis is free so you can try it out using the Genesis Sample child theme after installing Genesis.
There's also the Genesis blocks plugin which adds custom blocks.
Brad Dalton
ParticipantBrad Dalton
Participant1. You can use the WordPress > reading settings to display your latest posts and set it to display 1 post. You can then use the Genesis > theme settings > content archive settings to display full content.
or
2. You can use code in a front page template to display your latest post.
or
3. You set the reading settings to display a static page and use the Genesis blog page template on that page to display a full post or use Genesis Blog Page Template Query Arguments
There are also options using blocks which would achieve the same result.
Brad Dalton
ParticipantNo-one on Fiverr knows how to write code, if they did, they wouldn't be on Fiverr.
Brad Dalton
ParticipantNot easily done however you can add a image gallery with pagination.
Brad Dalton
ParticipantTry the Genesis site title hook or another site header hook https://wpsites.net/genesis-hooks/
Brad Dalton
Participant2 things to check :
1. Use the correct HTML 5 Hook assuming your theme supports HTML 5.
2. The correct conditional tag for single posts is
is_singular('post')
or for single pages
is_singular('page')
October 10, 2022 at 8:21 am in reply to: Adding site name and tagline to Magazine Pro header #505971Brad Dalton
ParticipantUntested but i would try removing the .site-description class selector from the CSS rule so none of the declarations apply to the description.
There are other methods however i think this is the best.
October 10, 2022 at 5:02 am in reply to: Adding site name and tagline to Magazine Pro header #505969Brad Dalton
ParticipantYou might find CSS is being used to hide the description in the site header. Check your child themes style.css file.
Around line 1264
.site-description, .wp-custom-logo .site-title { border: 0; clip: rect(0, 0, 0, 0); height: 1px; overflow: hidden; position: absolute !important; width: 1px; word-wrap: normal !important; }
Also note, you can filter the site title and description if needed using PHP code.
Brad Dalton
ParticipantYou could try adding a conditional tag in your code. Otherwise, you would need to use PHP code to load a js file conditionally.
Another option is ACF however you would also need PHP for the output.
-
AuthorPosts