kvnmcwebn
Forum Replies Created
-
Hi Deirc,
I found that the plug in EWWW Image Optimizer was causing major conflicts on this site. It looks like it conflicted directly with Sensei, but I had some other plug ins active that I could not disable during trouble shooting. Anyway it seemed to interact with the log on status somehow, very strange…
Thanks KevinForum: Plugins
In reply to: [Gutenberg] Disable margin-block-start and margin-block-end stylesThese two solutions get rid of the problem on the 2022 theme but they wipe my typography and other styling…
"spacing": { "blockGap": null, "margin": true, "padding": true, "units": [ "px", "em", "rem", "vh", "vw", "%" ] },
or
`”settings”: {
“spacing”: {
“blockGap”: null
}`
}`Forum: Plugins
In reply to: [qTranslate X] no language switching buttons – Classic requiredI suspect that the problem might have been a conflict between the Rank Math and qTranslate X plug-ins. Rank math stopped working after I activated qTranslate.
Forum: Plugins
In reply to: [qTranslate X] no language switching buttons – Classic requiredThanks Wilfried,
I see the plug-in is performing on your site and in three languages no less.
Oddly enough the site I am working on is also massage related.https://stillnessinmovement.org/
There is a space at the top of the pages where the title should be but none is there, they are not in the HTML either, I checked.. I just started manually adding titles.
I’d really like to avoid doing a clean install.
Forum: Plugins
In reply to: [qTranslate X] no language switching buttons – Classic requiredOk, thanks,
I’ve installed the classic editor plug-in and it shows up now. One thing that is strange is that the post & page title’s don’t show up on the front end since I’ve installed qTranslate… Also the featured imaged in posts does not show up. Have you encountered anything like that before?
Forum: Themes and Templates
In reply to: [WP Bootstrap Starter] header background image Height and WidthHello, yes thanks for the reply, actually what helped me was changing the background-size attribute in this rule:
#page-sub-header {
background-size: 100% !important;}
Forum: Developing with WordPress
In reply to: page template code crashing pageHi, Thanks for taking a detailed look, that is good to know there are no glaring issues. I will go through the syntax. I did not alter any code on the page though, other than declare a template name. Good idea on checking if it’s a plug in conflict. I’ve actually found a cool plug-in that will allow me to port in svg from external files stored on the server, between that and using custom css on a page by page basis I think I can hack together what I’m looking for, but I’m still going to try and get custom page templates going. Thanks for you help. And yes it’s a shame they said this is a wordpress issue, especially as the theme was over a hundred bucks…
Forum: Developing with WordPress
In reply to: page template code crashing pageHi, sure it’s big!
<?php /* * single page * semplice.theme */ ?> <?php get_header(); # inlude header ?> <?php if ( post_password_required() ) { ?> <div class="container"> <div class="row"> <div class="span12"> <?php echo get_the_password_form(); ?> </div> </div> </div> <?php } else { ?> <?php if(get_field('use_semplice') !== 'active' && get_field('use_semplice') !== 'coverslider') : ?> <section id="page-content" class="fade-content"> <div id="post" class="container"> <?php if (has_post_thumbnail( $post->ID ) ) : ?> <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?> <div class="row"> <div class="span12 featured"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><img src="<?php echo $image[0]; ?>" width="<?php echo $image[1]; ?>" height="<?php echo $image[2]; ?>" alt="Featured Image" /></a> </div> </div> <?php endif; ?> <div class="row"> <div class="<?php if(get_field('skinoptions_content_width', 'options')) : echo get_field('skinoptions_content_width', 'options'); else : echo 'span8 offset2'; endif; ?>"> <div class="post-heading"> <p><a href="<?php the_permalink(); ?>"><?php echo get_the_date('F d, Y'); ?></a> · <?php comments_popup_link(__('No Comments!', 'semplice'), __('1 comment.', 'semplice'), __('% comments', 'semplice')); ?></p> <h2 class="<?php if(get_field('skinoptions_heading_weight', 'options')) : echo get_field('skinoptions_heading_weight', 'options'); else : echo 'bold'; endif; ?>"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> </div> <div class="wysiwyg <?php font_sizes(); ?>"> <?php the_content(); ?> </div> </div> </div> </div> </section> <?php else : ?> <?php if(get_field('use_semplice') === 'coverslider') { get_template_part('partials/cover_slider'); # include cover slider if(get_field('coverslider_orientation') === 'horizontal' && get_field('content_after_slider')) { $content_slider_id = get_field('content_after_slider'); $content_slider_id = $content_slider_id->ID; } } ?> <?php if(get_field('use_semplice') === 'active' || isset($content_slider_id)) : ?> <?php if(isset($content_slider_id)) { $post_id = $content_slider_id; } else { $post_id = get_the_ID(); } ?> <?php if(get_field('cover_visibility') === 'visible' && !isset($content_slider_id)) : ?> <?php get_template_part('partials/fullscreen-cover'); ?> <?php endif; ?> <!-- content fade --> <div class="fade-content"> <?php // Remove wpautop remove_filter('the_content', 'wpautop'); // get content $content = get_post_meta( $post_id, 'semplice_ce_content', true ); // strip out double quotes on bg images $content = remove_esc_bg_quotes($content); // output content $output = apply_filters('the_content', $content); echo $output; // reset postdata wp_reset_postdata(); ?> </div> <?php if(get_field('share_visibility', $post_id) === 'visible' && get_field('global_share_visbility', 'options') !== 'hidden') : ?> <div class="share-box fade-content"> <div class="container"> <?php get_template_part('partials/share'); ?> </div> </div> <?php endif; ?> <?php endif; ?> <?php endif; ?> <?php } ?> <?php get_footer(); # inlude footer ?>
Forum: Fixing WordPress
In reply to: single category post showing up on all pages and category templatesi don’t think this theme supports template pages, i can use category links in the menu to work around this for now.
Forum: Plugins
In reply to: looking for symple shortcode markup tagsactually i’m going to reinstall symple shortcodes and use that as well. thanks.
Forum: Plugins
In reply to: looking for symple shortcode markup tagscheers that would have worked, but I ended up installing the Shortcodes Ultimate plug in. Even though the tags are different it works fine with the theme that I’m using. The theme runs on bootstrap so I guess the css is clean enough to work with any standard short code tags. I’ve only used it to make columns, rows and headings in posts so far. I’m sure there is some functionality I’ll miss out on but its fine for most stuff.
Forum: Fixing WordPress
In reply to: need symple shortcode shortcutsoh wait i thought these short codes were plug in specific. sorry the are actually built into wordpress…