Mikael Boldt
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce 1.6.5] Add a fixed fee to the cart totalok now I know that.
Do not edit the woocommerce-code! it will become a nightmare with all those updates we see of woocommerce.
I think it is better to design an additional plugin, although I do not know how. The main problem is that Woocommerce do not seems logical in its construction.
A manual for woocommerce plugin developers would be appreciated.
Forum: Plugins
In reply to: [WooCommerce 1.6.5] Add a fixed fee to the cart total(where my-woocommerce.com is your WP web-address)
here you can establish a fixed fee
Forum: Plugins
In reply to: Letting users to sell products and get paid by PayPal?Backwards Sale?
“Who want to buy 20$ ?”
“I will give 50 used pencils”
“I will give you a flowerpot”
“anymore bids ? 1 2 3 the 20$ bill is sold for a flowerpot”Give me your web-address and I will start claiming money from you.
Seriously, goto http://www.paypal.com to see your options.
Well, the next problem is to make this change permanent, so I do not have to do it every time there is an update.
thank you
I found the woocommerce.css file in the folder: woocommerce/assets/css
and I found the place to correct.My Notepad++ write the css file as one long string and around column 11430 is the %-figure to correct)
for my system I change the figure to 24% and it worked.
Forum: Themes and Templates
In reply to: [veryplaintxt] [Theme: veryplaintxt] TranslationThe key is the function: load_theme_textdomain. This function is placed last in functions.php of the Theme.
The .mo files must use language-only filenames, like languages/de_DE.mo in your theme directory.
Unlike plugin language files, a name like my_theme-de_DE.mo will NOT work. Although plugin language files allow you to specify the text-domain in the filename, this will NOT work with themes. Language files for themes should include the language shortcut ONLY.
I have changed a little in functions.php of the theme, so load_theme_textdomain now says:
load_theme_textdomain ('veryplaintxt' get_template_directory().'/lang');
Because then I can place my language file in the folder: themes/veryplaintxt/lang – I like to keep orderForum: Themes and Templates
In reply to: [veryplaintxt] [Theme: veryplaintxt] image resize problemI have now found the problem:
The theme manage the image using wp_get_attachment_image ($ post-> ID, ‘large’)
and in my control panel / media settings are “Large size” Max Width and Max Height set to the 1024.
by changing the figure to 680 everything was solved.
Forum: Themes and Templates
In reply to: photo gallery in Weaver/TventyTenA little closer to identify the problem.
My category “photos” had a slug named “gallery”. I have now chanced the name of the slug to “album” and this part is now working according to my wishes.
Forum: Themes and Templates
In reply to: Theme Weaver – Gallery post view problemit is the gallery.php that creates the problems, so I have changed the content to:
<?php
/**
* Template for displaying gallery excerpt
*/
?>
<div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<h2 class=”entry-title”><?php weaver_post_title(); ?></h2>
<?php weaver_posted_on(); ?>
<div class=”entry-content”><?php the_content(); ?>
</div><!– .entry-content –>
<?php weaver_posted_in(); ?>
</div><!– #post-## –>Which serves my purpose!
Forum: Themes and Templates
In reply to: Theme Weaver – Gallery post view problemYes … and No
Just tried to change to twenty ten and then all the “CSS” stuff disappeared.
but still the post is identified as a gallery with a sentence:
“This gallery contains 7 photos.” instead of just showing the entire post as I wantForum: Installing WordPress
In reply to: WordPress database errorI have addressed this problem on Counterizeii webpage
( http://www.navision-blog.de/counterize-ii-english/ )
and they have now found a programme error.
“The problem is a small typo in the file “counterize_install.php”. If you open the file and you go to the end you will find twice something like:
if($minorVersion < …you have to change them to:
if($MinorVersion < …please note the “M” of “minor” now capital.
“Forum: Installing WordPress
In reply to: WordPress database errorif I deactivate Counterizeii or any other plugin and then activate my plugin nothing happens – meaning no warning occurs.
It is only a warning all the plugins seems to be working
Forum: Installing WordPress
In reply to: WordPress database errorI have no Idea I’m only a user.
My plugin is not establishing any new tables in the database only looking into 2 tables.Is it the plugin mentioned in the error (Counterizeii) that is establishing the error?
or is it a coincident? (order of plugins installed)?Forum: Fixing WordPress
In reply to: rss feed for post topicread about it here: http://codex.wordpress.org/WordPress_Feeds
the short version:
http://www.example.com/?cat=42&feed=rss2
where you specify cat= to your actual category.