adriesilva
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Shortcode more than one categoryHi there I’ve used the shortcode on my Page. Is there where the shortcode should go? Because I don’t see any effect. Here is the code which I simply copied and pasted then altered the categories:
[product_category category=”prime,art,globalb” per_page=”9″ columns=”3″ orderby=”date” order=”desc” operator=”AND”]
Here is the web page that should show the shortcode results:
https://www.libertyinkicks.com/welcome/Thank you so much for this! I gave my client multiple user roles and he was able to access/edit/create the tables and work with the TablePress plugin using the Author and Editor roles.
Forum: Themes and Templates
In reply to: I can't get my sidebar to show in my own themeOkey thank you, that should help a lot.. and i’m tired of the Codex.. too much outdated info and an overload.. it drains me just to go from one page to the other without much progress.
Forum: Plugins
In reply to: [WP Easy Columns] Make this plugin responsiveI got it! Just place this code into the Easy Column’s css style sheet.. i placed mines at the bottom of the stylesheet:
@media (max-width: 600px) {
.wpcol-one-third {
position: relative!important;
}
.wpcol-one-third {
float: none!important;
width: auto!important;
}
}should work with all broswers
Forum: Plugins
In reply to: [Widgets on Pages] Widgets Side by SideI decided to get the “easy column” plug in it works great and can be made to respond to mobile and tablet devices with this code:
@media (max-width: 600px) {
.wpcol-one-third {
position: relative!important;
}
.wpcol-one-third {
float: none!important;
width: auto!important;
}
}i found an answer to make my 1/3rd columns responsive.. place this code in “easy column’s” css stylesheet:
@media (max-width: 600px) {
.wpcol-one-third {
position: relative!important;
}
.wpcol-one-third {
float: none!important;
width: auto!important;
}
}Forum: Plugins
In reply to: [WP Easy Columns] Make this plugin responsivefor me the 1/3rd columns line up on top of each other.
Forum: Plugins
In reply to: [WP Easy Columns] Make columns reponsivehello I’m having the same issue, how do I get the 1/3 columns to align vertically when the screen is small?
thank you.
Forum: Plugins
In reply to: [Widgets on Pages] Widgets Side by Sideokey i created more widgets but the css code you have didn’t make them horizontal.. still trying.
Forum: Plugins
In reply to: [Widgets on Pages] Widgets Side by Sidehi there, i can’t figure out how to align the widgets horizontally.
i’m using the widgets on pages plugin and there is no option for alignment.
I would like to actually create more sidebars, place them next to each other horizontally, then add just one text widget to each..
thank you, anything helps
Forum: Plugins
In reply to: [Widgets on Pages] Sidebars Maxed Out?Hello there, I’m new to wp and this plugin, so far I’ve added widgets to one sidebar in one page.
But please tell me how I can add more sidebars..
You mention that this code should go in my theme file but when I add it to my index.php file nothing happens.. nothing shows up in the page or in the widgets area.. please help
<?php widgets_on_template(“wop_1”); ?>
Forum: Themes and Templates
In reply to: I can't get my sidebar to show in my own themedang.. i got an error now with that code.
i’m totally lost because so much is outdated info.
Forum: Themes and Templates
In reply to: I can't get my sidebar to show in my own themeOH! Do you know how to horizontally align the sidebar?
I’m sure it would be done with css.. and I feel comfortable with css/html.
Forum: Themes and Templates
In reply to: I can't get my sidebar to show in my own themehi, i don’t have more than one sidebar right now.
so i found this article helpful.. I was able to see “widgets” and “menus” but i’m no where close to learning about menus yet:
In functions.php, put:
<?php /** * Register our sidebars and widgetized areas. * */ function arphabet_widgets_init() { register_sidebar( array( 'name' => 'Home right sidebar', 'id' => 'home_right_1', 'before_widget' => '<div>', 'after_widget' => '</div>', 'before_title' => '<h2 class="rounded">', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'arphabet_widgets_init' ); ?> Then place this code where you want your widget/sidebar to show: <?php if ( dynamic_sidebar('home_right_1') ) : else : ?> <?php endif; ?>
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
I have yet to learn how to add more than this one sidebar. But I’m going to keep searching. And if you can help that would be great too! ??
Forum: Themes and Templates
In reply to: The theme is missing the index.php file.Thank you!