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 ? #506201Brad DaltonParticipant
There 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 DaltonParticipantHere'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 DaltonParticipantAs long as its WordPress, your content will be saved in the database and you can use another theme like Infinity Pro.
Brad DaltonParticipantTry 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 DaltonParticipantSure. Please book a consultation https://wpsites.net/product/hourly-consulting/
Brad DaltonParticipantNever edit Genesis however you can modify or delete code in any StudioPress/Genesis child theme.
Brad DaltonParticipantCheck in the functions file to see if they are loaded and delete the code if applicable.
Brad DaltonParticipantNovember 1, 2022 at 9:38 am in reply to: Customize WooCoomerce category with extra text field #506093Brad DaltonParticipantYou 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 DaltonParticipantYou can use the Genesis SEO settings to change this or filter the site title and change the HTML tags.
Brad DaltonParticipantSure 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 DaltonParticipantBrad DaltonParticipant1. 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 DaltonParticipantNo-one on Fiverr knows how to write code, if they did, they wouldn't be on Fiverr.
Brad DaltonParticipantNot easily done however you can add a image gallery with pagination.
Brad DaltonParticipantTry the Genesis site title hook or another site header hook https://wpsites.net/genesis-hooks/
Brad DaltonParticipant2 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 DaltonParticipantUntested 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 DaltonParticipantYou 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 DaltonParticipantYou 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