Forum Replies Created
-
AuthorPosts
-
babrees
ParticipantThank you but I did. They stated 'Toolset do not have any influence on page layout or sidebar as Toolset's output is only affected on the_content() (the page/post body) area. We do not control header, footer, sidebar.'
They did offer to take a look to see if they could find a work-around, but the site is only local dev at the moment.
Somebody else suggested adding Genesis support
add_post_type_support( 'art-galleries', 'custom-fields' );
but that didn't workbabrees
ParticipantThanks @andytc Got it working, but I had to remove the ! after && as it was working but the wrong way round, removing it from Blog and including it elsewhere!
babrees
ParticipantIn the older theme settings, you would have a header section with a choice to have text or an image for a header. This is no longer there. In many themes it would not show due to custom header in functions.php - so I would remove that to show the header choice in theme settings.
I want an image logo as site title - not text. Nor do I want the image to be a background image.
babrees
ParticipantThanks Victor.
Is there documentation how we can have an image in site-title now then, as it's no longer in theme settings. Bad move on Studio Press for me 🙁
babrees
ParticipantThank you, but contrary to that it does not automatically adjust to the correct size 🙁
In the end I removed the custom header support, as I could not see a way to do it with that, and uploaded a smaller image for smaller devices. It is still not perfect but at least the logo is showing.
babrees
ParticipantThank you Jchai. As I stated, I am using Executive Pro Theme, albeit with a few customisations that I did myself.
If the option to have a logo in the header is available in the default theme, surely there should be help with ensuring this is ok on all devices?
babrees
ParticipantThank you but I don't know how to do that. Is there a tutorial somewhere?
babrees
ParticipantThanks Andrea, but what I meant is that all the contact forms are for help only, there was no subject for just leaving feedback or suggestions in the drop-down box.
babrees
ParticipantOK, it seems that I was looking in the wrong place. Being used to always having called it Post Meta, it is now under Entry Header and known as Entry Meta!
babrees
ParticipantSusan. Thanks. It was very hard to be able to contact StudioPress directly with feedback or suggestions. In the end I contacted them using a "pre purchase" enquiry. I have heard back from them
babrees
ParticipantYep, that one works. However, under Code Snippets for removing post meta it shows
//* Remove the post meta function remove_action( 'genesis_after_post_content', 'genesis_post_meta' );
I cannot see any code snippets where it shows it correctly, as you have shown
babrees
ParticipantNo. I don't want to use a plugin for simple things. I have the correct code now, I am just pointing out the fact that the snippets are wrong.
babrees
ParticipantRemoving post meta and also post info. Haven't checked others
babrees
ParticipantI had the issues with the sidebar, but on a new site so I didn't connect it immediately to woocommerce upgrade.
Instead I deactivated all my plugins and then reactivated them. That seemed to do the trick as it all appears to be working ok
babrees
ParticipantThanks Victor, unfortunately that didn't work either.
babrees
ParticipantThanks. I'm not sure what the problem was, but it was suggested to add widgets to the empty front-page sections. After adding them it suddenly worked and all showed in columns. They still worked after removing the widgets in the sections I wanted empty
babrees
ParticipantHi Victor - got it working!!!! My fault entirely. I had tried so many different things and I had inadvertently not deleted one bit I had tried previously and that was the problem!
I'd like to say thank you for all your help in this forum. Words can not say how much it is appreciated!
Thanks
babrees
ParticipantYes, I created the category from the menu, but I do have a category template...
<?php //* Remove the post title function remove_action( 'genesis_entry_header', 'genesis_do_post_title' ); //* Add the post title function add_action( 'genesis_entry_content', 'genesis_do_post_title', 11 ); //* Remove the post info function remove_action( 'genesis_entry_header', 'genesis_post_info', 12 ); //* Remove the post content remove_action( 'genesis_entry_content', 'genesis_do_post_content' ); //* Remove the post meta function remove_action( 'genesis_entry_footer', 'genesis_post_meta' ); genesis();
This is the exact code I put into functions.php...
//* add new class div to wrap entry in photo gallery add_action('genesis_before_entry','add_custom_div_open'); add_action('genesis_after_entry','add_custom_div_close'); function add_custom_div_open() { if ( is_category( 'photo-gallery' ) ) { echo '<div class="photo-gallery-class">'; } } function add_custom_div_close() { if ( is_category( 'photo-gallery' ) ) { echo '</div>'; } }
babrees
ParticipantThanks Victor, but that that didn't work. Didn't make any difference at all.
I neglected to say I'm using Altitude theme, don't expect that would make a difference though.
babrees
ParticipantThanks Victor!
-
AuthorPosts