kevinritt
Forum Replies Created
-
Thank you for the information.
Forum: Fixing WordPress
In reply to: underscore_sSide note: I’m looking to develop using tailwind. Do you recommend underscore_tw or Tailpress?
Forum: Fixing WordPress
In reply to: client portalThank you @t-p I will look into this list
Forum: Developing with WordPress
In reply to: Post excerpt and videosThis is getting me almost there:
function rbtj_excerpt_mod(){ if ( is_page('about-rbtj-ca') && in_category( array(27, 28) ) || is_archive(27, 28)){ the_content(); } else { if ( is_page('about-rbtj-ca') && in_category( array(29, 30) ) || is_archive(29, 30)) { echo wp_trim_words(get_the_content(), 50, ''); } } };
Just not taking effect if I have longer posts in the archive.php file
- This reply was modified 2 years, 10 months ago by kevinritt.
Forum: Developing with WordPress
In reply to: Post excerpt and videosIf trying to do something like this:
function rbtj_excerpt_mod(){ if ( is_page('about') && in_category( 10, 11 ) || is_archive(10,11)){ the_content(); } else { wp_trim_words(get_the_content(), 50, ''); } };
where the posts in cat(10,11) are videos(show content) and the others are
echo wp_trim_words(get_the_content(), 50, '')
Forum: Fixing WordPress
In reply to: Transparent nav on homepage onlyThank you @catacaustic I will try this out.
Kevin
Forum: Plugins
In reply to: [WooCommerce] Add a custom quoteThank you Cara – a11n (@dcka)
I think I’ll give Request a Quote for WooCommerce. Seems to fit my needsForum: Fixing WordPress
In reply to: moving local site to remote serverThank you
Forum: Plugins
In reply to: [WooCommerce] Upload file on product pageThank you gabrielfuentes (@gabrielfuentes) and abwaita (@abwaita).
I went with Product Add-Ons plugin.Forum: Plugins
In reply to: [WooCommerce] Register and purchase productThank you Stef (@serafinnyc)
- This reply was modified 3 years, 8 months ago by kevinritt.
Forum: Plugins
In reply to: [WooCommerce] Customer Dashboard customizationThank you, I will take a look at those.
Forum: Fixing WordPress
In reply to: moving local site to remote serverThank you @gappiah
Forum: Fixing WordPress
In reply to: customer login to see calendarThank you again. Just started looking at Amelia. Looks pretty slick and may be just what I need. Thanks for the advice!
Forum: Fixing WordPress
In reply to: customer login to see calendarThank you, George. Does Amelia also allow customers to create accounts?
Forum: Fixing WordPress
In reply to: stay on same page if “no search results”This is working but is there a way to add a pop up message stating ‘No results found…’? This is what the client wants but I’m afraid that it will confuse visitors.
OR
Is there a way to direct them to a different page with a message and have that page redirect within a few seconds?