marv2
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] Change The Continue Reading TextThanks for your replies. I would like to change it just for the “paint” post type.
Forum: Plugins
In reply to: [WooCommerce] Is it possible to use multiple Stripe accounts?THanks for your response.
I found some info on “multi vendor” stores. Would such a setup help me achieve what i want?
Forum: Themes and Templates
In reply to: [OceanWP] How to customize Single Page HeaderHi, i would like to change it for the whole website.
Take care.
Forum: Themes and Templates
In reply to: [OceanWP] How to customize Single Page HeaderThanks, but I would like to customize it more, I want to add my own text, etc.
Can you please tell me the file that I need to modify?
Thanks!Forum: Themes and Templates
In reply to: [OceanWP] How to create a custom post type templateThanks. What about for all posts?
Forum: Themes and Templates
In reply to: [OceanWP] How to create a custom post type templateI would like to change the post title area in the header. I want to put a full width background image there and some taxonomy data. I want the title area of the header to look something like this, with my own image in the background: Title Header Area
Thank you!
Forum: Themes and Templates
In reply to: [OceanWP] How to create a custom post type templateThanks for the reply, but I would like to do it in code. Can you please advise me which files I have to edit? Thanks!
Forum: Themes and Templates
In reply to: [OceanWP] How to create a custom post type templateHi, I would like to create a custom header for my custom post type page. What files do I have to modify to do that?
Thanks!
Forum: Developing with WordPress
In reply to: How to set a taxonomy term meta field to a PHP variableThanks!
Forum: Developing with WordPress
In reply to: How to set a taxonomy term meta field to a PHP variableThanks for your reply. Is there any way to get a variable as such
$printcameramodels
instead ofprintCameraModels()
? The reason I am asking is because one of my term meta fields has a link to an audio file, but when I use the wordpress audio shortcode with theprintCameraModels()
type variable, it doesn’t load the audio file. Thanks!Thanks!
How hard would it be to put a posts custom taxonomy in the results?Forum: Themes and Templates
In reply to: [OceanWP] How to create a custom post type templateHello, if you will create a custom query, you can remove:
// Start loop
while ( have_posts() ) : the_post();// EDD Page
if ( is_singular( ‘download’) ) {
get_template_part( ‘partials/edd/single’ );
}// Single Page
elseif ( is_singular( ‘page’ ) ) {get_template_part( ‘partials/page/layout’ );
}
// Library post types
elseif ( is_singular( ‘oceanwp_library’ )
|| is_singular( ‘elementor_library’ ) ) {get_template_part( ‘partials/library/layout’ );
}
// All other post types.
else {get_template_part( ‘partials/single/layout’, get_post_type() );
}
endwhile;
Hi, will this work if i want to put a custom div on the page instead of a custom loop? I have a div that I designed that displays all the data I want. Also, will the page still be responsive if I put in the div?
Thanks! That worked perfectly!
One more thing: I would like to also change the font size and color of the search results, and I would like to center (vertically, not horizontally like align-text:center) the text in the box. All I need in the search results is the featured image and post title. Is this possible?
Thanks!
Forum: Themes and Templates
In reply to: [OceanWP] How to create a custom post type templateHi, it is not live yet.