omniafausta
Forum Replies Created
-
Forum: Plugins
In reply to: [WPS Hide Login] I can't access to my site 404I have the same problem!
I go to my new login-page, log in and get redirected tot a page 404– I tried it in a different browser: same problem
– I removed the plugin: I could go to the wp-admin page again, but when I try to login, nothing happens (stays on the same page)
– I put the plugin back: site breaks completely! white page!So now I have a serious problem. Should I alter something in my database to get it to work again?
Thanks for any help on this!!!
Forum: Themes and Templates
In reply to: [Oren] featured image as thumbnail only and not in pageif you make a child theme you can remove it from the file template-portfolio-item.php
if you remove this part:
<?php if ( has_post_thumbnail( $post->ID ) ) : ?> <div class="featured-image single-portfolio-featured-image"> <?php echo get_the_post_thumbnail( $post->ID, 'themeora-thumbnail-span-12' ); ?> </div> <?php endif; ?>Forum: Themes and Templates
In reply to: [Oren] [theme Oren] change size of text in headerI believe it uses the excerpt for the smaller text, not sure though, but worth a try?
Forum: Plugins
In reply to: [List Pages Shortcode] problem with sibling pages in WordPress 4.4Kristyna thanks for your solution, that seems to work!
I checked it on my offline backup of that site.Only problem is that LOADS of pages will need to have that code retyped… So I might just keep the old install for now, and tackle this if I have the time for it.
And hope that the bug that makes this happen is fixed before I start 😉
Forum: Plugins
In reply to: [Etsy Shop] language choice?good to hear! Looking forward to that. Thanks!!
Forum: Plugins
In reply to: [Etsy Shop] Adding columns to Etsy Shopyou can add columns=”4″ to your shortcode.
well, and you thank you for this plugin 🙂
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] trouble installing and updatingHi,
Thanks for your reply, but this does not seem to be the case.
The last site I had this problem with still has about 400Mb of free webspace.
So far it has been only this plugin (but it might be the biggest I use, could be) and on several different websites, and I think hosted by several different webhosts, but I am not sure about that last bit.I will see if it only happens at this specific webhost. Maybe the problem lies with them.
Anyway, if needed I’ll just do it through ftp. Love your plugin.
Joke
Forum: Plugins
In reply to: [List Pages Shortcode] How to Show Siblings but *not* current page?[sibling-pages exclude_current_page="1"]Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Not working with Custom FieldsI have the exact same problem, so thanks for a solution Fabian. It sounds like what I need.
But I can’t get it to work. Where should this code go? In functions.php? or somewhere in the template where I call my custom field? I am still quite a novice on php, so any help would be appreciated!Forum: Plugins
In reply to: [a3 Portfolio] portfolio item display maximum items per rowHi,
Thanks for your reply, this was exactly what we needed!!
Forum: Plugins
In reply to: [a3 Portfolio] showing items from 1 category of the portfolio on a pageThanks for your reply, we will think about if we are gonna use the add-on or resolve it in another way.
oh forgot to post that I found a way to solve this
this is the code used now
<?php if ( MultiPostThumbnails::has_post_thumbnail(get_post_type(), 'feature-image1') ) { MultiPostThumbnails::the_post_thumbnail( get_post_type(), 'feature-image1', set_post_thumbnail_size( 265, 265, true ) ); } else { echo '<img src="' . get_stylesheet_directory_uri() . '/images/banner-standaard1.jpg" alt="banner" />'; } if ( MultiPostThumbnails::has_post_thumbnail(get_post_type(), 'feature-image2') ) { MultiPostThumbnails::the_post_thumbnail( get_post_type(), 'feature-image2', set_post_thumbnail_size( 265, 265, true ) ); } else { echo '<img src="' . get_stylesheet_directory_uri() . '/images/banner-standaard2.jpg" alt="banner" />'; } if ( MultiPostThumbnails::has_post_thumbnail(get_post_type(), 'feature-image3') ) { MultiPostThumbnails::the_post_thumbnail( get_post_type(), 'feature-image3', set_post_thumbnail_size( 265, 265, true ) ); } else { echo '<img src="' . get_stylesheet_directory_uri() . '/images/banner-standaard3.jpg" alt="banner" />'; } ?>Forum: Plugins
In reply to: [a3 Portfolio] path to overriding templates is incorrectokay, i found the issue.
In your templates it says that the directory should be called portfolio, but in a3-portfolio-template-functions.php i found that the directory should be called portfolios (with an s at the end)So now I called my directory portfolios and now it works.
Maybe you should change the comments in your template files to say portfolios instead of portfolio…Forum: Plugins
In reply to: [a3 Portfolio] portfolio item display maximum items per rowOk, I found the setting that will remedy my problem.
In the document admin/settings/template-settings/global-settings.php$this->form_fields = apply_filters( $this->option_name . '_settings_fields', array( array( 'name' => __( 'Portfolio Item Display', 'a3_portfolios' ), 'type' => 'heading', ), array( 'name' => __( 'Maximum Items Per Row', 'a3_portfolios' ), 'desc' => __( 'Maximum Items to show per row in larger screens.', 'a3_portfolios' ), 'id' => 'portfolio_items_per_row', 'type' => 'slider', 'default' => 4, 'min' => 1, 'max' => 6, 'increment' => 1, )if I change the max from 6 to 10, I get the result I need. (If I also do some css tweeks)
But of course I do not want to make the change in the plugin itself (because the problem would return if I update…)
How, do I make this change in the childtheme I am making??
Help is appreciated!!