Dario Devcic
Forum Replies Created
-
Forum: Reviews
In reply to: [Themelia] It was good until it wasn’t.I’m sure I didn’t call anyone a liar.
I said the theme’s customizer is not broken and that I can’t reproduce that issue.
I have no idea what you were doing on your website, what plugins you installed, what version of PHP you are using, etc.
The theme is not broken and works perfectly.Forum: Themes and Templates
In reply to: [Themelia] Customizer brokenNo, I’m not saying you’re all liars. No, I don’t think that’s an edited screenshot designed to make me look bad.
I said the theme’s customizer is not broken and that I can’t reproduce that issue.
I have no idea what you were doing on your website, what plugins you installed, what version of PHP you are using, etc.
The theme is not broken and works perfectly.Forum: Themes and Templates
In reply to: [Themelia] Customizer brokenNo, this theme’s customizer is not broken. I can’t reproduce this issue. Everything works good on my live website as in my test and dev environments.
Forum: Themes and Templates
In reply to: [Themelia] E-COMPILE ErrorThe file that is failed opening ‘…/wp-content/themes/default/library/hybrid.php’ is included in the theme, so there was most likely an error installing the theme.
Forum: Themes and Templates
In reply to: [Themelia] How to remove schema.org markupCheck new version 1.3.0, Schema.org microdata is removed.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Removing “By xxx” from Blog Posts.post-author.meta-wrapper { display: none; }
or remove only from single blog post:
.single-post .post-author { display: none; }
- This reply was modified 5 years ago by Dario Devcic.
Forum: Themes and Templates
In reply to: [Themelia] Custom blog page to add sliderI’m glad you figured it out on your own. In my example I wrap it in a div with class “grid-100”, because this class adds 15px left/right padding, so the slider will be the same width as the content.
Forum: Themes and Templates
In reply to: [Themelia] How to remove schema.org markupIn next update I will add option to remove microdata.
Forum: Themes and Templates
In reply to: [Themelia] Custom blog page to add sliderThere is an action hook in that place (‘themelia_before_content’), so you could create a custom function which hook into it.
In following example we have a custom function which will run smartslider3 shortcode, on home page only. You should add it in your child theme functions.php.function my_custom_slider( $output ) { if ( is_home() ) { $output .= '<div class="grid-100">'; $output .= do_shortcode( '[smartslider3 slider=2]' ); $output .= '</div>'; } echo $output; } add_action( 'themelia_before_content', 'my_custom_slider' );
- This reply was modified 5 years ago by Dario Devcic.
- This reply was modified 5 years ago by Dario Devcic.
Forum: Themes and Templates
In reply to: [Themelia] Youtube videos height incorrectYou have another theme active on that page, so I can’t see what the problem could be. I’m not able to reproduce the issue as you described. Here is example page https://preview.relishpress.com/themelia/sample-page/ko-hyojoo/
Forum: Plugins
In reply to: [Contact Form 7] Show reCaptcha v3 inlineThe badge is certainly visible ?? I guess it should be possible to display it inline same as for v2. https://developers.google.com/recaptcha/docs/invisible#render_param
Imagine the mess if each plugin would come with it’s own font because author thinks that WP interface looks ugly. We need a native and uniformed interface that load quickly. Having different font in each plugin is terrible user experience. Please think about it and just remove Roboto. Does not help in any way, just the opposite, it is unnecessary bloat.
I mean WordPress admin has switched to system fonts since version 4.6. Default WP admin font-stack is:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
I don’t see why would any plugin come with it’s own fonts for backend UI. WP Cerber has great and simple UI, except use of Roboto. It breaks native-feeling in the WP backend.
Themelia is Accessibility Ready theme. One of accessibility requirements is to define focus style. Check this page for further explanation and for various alternative methods https://www.outlinenone.com/
Forum: Themes and Templates
In reply to: [Themelia] Button Color CustomizationThere is no such option in theme customizer. But you can easily customize buttons by adding css in Customize -> Additional CSS:
.btn, .submit, button, input[type="submit"], #content input[type="submit"] { background: #00823b; border: 1px solid #00823b; color: #fff; }
- This reply was modified 6 years, 4 months ago by Dario Devcic.