beniEllis
Forum Replies Created
-
Forum: Plugins
In reply to: [Customizer for WooCommerce] Select optionsNevermind… it says “add to cart” and I was looking for “select options.”
Working fine now.
Forum: Plugins
In reply to: [Kento Post View Counter] double statsI applied the fix from above to the index.php file in the kento plugin folder replacing
function kento_pvc_display($cont){
with
function kento_pvc_display($cont){ global $index; $index = $index+1; if($index>1) { return $cont; }
The counter on my post completely disappeared from the page. Did I miss something?
Thanks.
Forum: Plugins
In reply to: [WP Favorite Posts] Include excerpt and maybe post category to FavoritesMy website: https://daytrippintexas.com/ — if you need it.
Forum: Plugins
In reply to: [Menu Image, Icons made easy] No menu on iPad verticalI think I have followed this instructions to the letter at least three times and it is just not working for me. I’m sorry; I am just stuck.
Forum: Plugins
In reply to: [Menu Image, Icons made easy] No menu on iPad verticalHow?
Forum: Plugins
In reply to: [Menu Image, Icons made easy] No menu on iPad verticalI’m not sure you are understanding my question. I applied the fixes in your links, but my text menu is still not fully showing on iPhone or iPad portrait mode.
Here is what I see with the plugin activated: https://imgur.com/JTRQTPV,B5LHMDu#1
And here is how it looks (and what I want) when the plugin is deactivated: https://imgur.com/JTRQTPV,B5LHMDu#0
I need to be able to see the whole menu.
Thanks.
Forum: Plugins
In reply to: [Menu Image, Icons made easy] No menu on iPad verticalThe top menu works fine in horizontal mode on the same iPad.
Forum: Plugins
In reply to: [Menu Image, Icons made easy] Image covers options on backendps… to anyone following this, YES, the workaround that zviryatko suggested works great. It removes the image while you are working on the menu so you can access the controls.
Forum: Plugins
In reply to: [Menu Image, Icons made easy] Image covers options on backendIt seems to be related to the new size I created via the following script that I added to my functions.php. Once removed, the menu setup page works fine. Here’s what I added:
// add new size for menu image plugin add_filter( 'menu_image_default_sizes', function($sizes){ // remove the default 36x36 size unset($sizes['menu-36x36']); // add a new size $sizes['menu-90x90'] = array(90,90); // return $sizes (required) return $sizes; });
Do you see an error in it?
Forum: Plugins
In reply to: [Menu Image, Icons made easy] Image covers options on backendBased on an earlier post here on the forum, I already regenerated the thumbnails via that plugin. They work on the fronted just fine, but on the backend, the image is blocking the options in the menu window — https://imgur.com/z8bEyKa — and I after selecting an image, I am unable to select any options or make any other changes in that panel.
Forum: Themes and Templates
In reply to: Adding Opacity to sidebar background in Twenty FifteenNot sure if you are still looking for an answer, but here is what I found when I was trying to do the same thing:
Now you want the background of that div to be transparent, but not the text – this requires using an RGBa value for the background of the div. From time to time you may use RGB values for setting colours in your CSS (e.g. rgb(170, 187, 97)), an RGBa value simply adds an alpha-transparency value to that code, so the CSS class for the example div is:
.container {
background: rgb(170, 187, 97); /* Fallback */
background: rgba(170, 187, 97, 0.5);Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Transferring websiteI don’t want to copy the whole database. There have been changes made since the transfer that I will lose.
I am trying to copy just the post-type ai1ec_events, but when I try to copy data only to the new wp_posts table, I am getting a #1062 sql error. Do you know how I can get around this?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Transferring websiteThe current feed shows the first event being October 2015. It seems to be missing all the months in-between.
Can I export the all in one files from the old database and import them into the new database?
Forum: Plugins
In reply to: [Google Font Manager] Doesn't work for meOkay as a last option I clicked the one remaining button in the right column of the plugin that was off by default… and now thing are working.
Wish me luck! ??
Forum: Plugins
In reply to: [WP RSS Multi Importer] My images are out of alignment – some overlapTo anyone having this same problem:
I edited the css for the plugin as follows (in bold are the changes I made:
div.rss-output {
padding: 1.025em;
float: left; /* uncomment to float all posts to the left */
border-bottom: 1px solid red; /* uncomment to make a line in between each entry */
background: #f1f1e2;
width:100%;
}