Mattia
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] Translating widget titleHello,
I don’t know what you mean with “edit the language file of OceanWP Extra plugin” but I scanned all my plugins for strings and I found nothing.
Forum: Plugins
In reply to: [Swift Performance Lite] Cached Pages?I see many lines like this:
28/09/2018 17:15 [Event] Prebuild cache hit page: https://panama.elpiro.ml/sample/ ( Memory:10.70Mb CPU:0.10% )
but it always says Cached Pages 0
Forum: Themes and Templates
In reply to: [OceanWP] ZoomIn animation for sidebarWow, I didn’t think it could be so easy. It works perfectly.
Thanks A LOT!! And thanks for this awesome theme!Forum: Themes and Templates
In reply to: [OceanWP] ZoomIn animation for sidebarStrange, I can see it. I’m not sure we are understanding each other. This is what I mean:
Animations- This reply was modified 6 years, 6 months ago by Mattia.
Forum: Themes and Templates
In reply to: [OceanWP] ZoomIn animation for sidebarNo, I don’t want to use Elementor to create the sidebar. I want to add the ZoomIn animation to the default sidebar.
Forum: Themes and Templates
In reply to: [OceanWP] ZoomIn animation for sidebarHello,
you can see it in the section “Smartfeatures…”.
In Elementor it’s in ‘Advanced’ –> ‘Entrance Animation’Forum: Themes and Templates
In reply to: [OceanWP] Sidebar with separated boxesThanks! I’m already using them, they are really helpful! I’ll watch these tutorials later.
I mark this thread as resolved since the main issue is fixed.Thanks for your help!
Forum: Themes and Templates
In reply to: [OceanWP] Sidebar with separated boxesYes you’re right. It works. Thanks!
I can’t find a selector for the content of the boxes. I found the title:
.sidebar-box .widget-title
but not the content.My goal is to have the bottom border of the title touch both sides of the sidebar. If I delete the ‘Widgets Padding’ in general option > general settings, then the widgets are too close to each other. Therefore my need to change the padding of the content.
Forum: Themes and Templates
In reply to: [OceanWP] Sidebar with separated boxesThanks for the quick reply. It doesn’t work though. In the link I posted there is a sidebar with 3 boxes: 1 for ‘Search’, 1 for ‘Address’ and 1 for ‘Contacts’. These are the boxes I mean.
Forum: Themes and Templates
In reply to: [OceanWP] https and mixed contentThanks fixed
Forum: Themes and Templates
In reply to: [OceanWP] bottom barAwsome thanks! It works perfectly!
Forum: Themes and Templates
In reply to: [OceanWP] bottom barHi,
I added the sidebar in functions.php:
/* Sidear before the footer */ function footer_sidebar_mattia() { register_sidebar( array( 'name' => __( 'Pre-Footer Sidebar', 'oceanwp' ), 'id' => 'pre-footer-sidebar', 'description' => __( 'Widgets in this area will be shown on all posts and pages, before the footer.', 'oceanwp' ), 'class' => '', 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '</li>', 'before_title' => '<h4 class="widgettitle">', 'after_title' => '</h4>', ) ); } add_action( 'widgets_init', 'footer_sidebar_mattia' );
I copied the footer.php in the child theme directory and added a call so:
</main><!-- #main --> <?php do_action( 'ocean_after_main' ); ?> <?php dynamic_sidebar('pre-footer-sidebar'); ?> <?php do_action( 'ocean_before_footer' ); ?>
Now I see the sidebar. I added the language switcher and it works. Fantastic.
But I can’t find a way to add a shortcode to it. What’s the name of the widget?Thanks
Forum: Themes and Templates
In reply to: [OceanWP] bottom barHi,
thanks for your help. Solution #1 works perfectly. Here:
/sampleHowever, since I’m already using a child theme, I’d like to implement the #2. Can you please provide some instructions to registrer a sidebar with oceanwp? I already found some tutorials, but since it requires messing with functions.php, I’d like some official info. I don’t want to make mistakes.
Thanks
Forum: Themes and Templates
In reply to: [OceanWP] Replicating siteOk thank you
Forum: Themes and Templates
In reply to: [OceanWP] Replicating siteIsn’t already defined with this:
:root { --mycolor: red; }
Can you provide the correct code?
Thanks