ascriptomat
Forum Replies Created
-
Would you mind sending an e-mail to [email protected], then I can email you?
Hi. Thank you! I can’t find your e-mail in the WP plugin dashboard though?
Forum: Plugins
In reply to: [Calculated Fields Form] Create CSS button + image radio buttonOkay, so just to understand for the button, I would have to insert
<a href="https://example.com" class="button1">example</a>
for the HTML text, or?It doesn’t seem to work.
- This reply was modified 3 years, 3 months ago by ascriptomat.
- This reply was modified 3 years, 3 months ago by ascriptomat.
- This reply was modified 3 years, 3 months ago by ascriptomat.
- This reply was modified 3 years, 3 months ago by ascriptomat.
Forum: Plugins
In reply to: [GenerateBlocks] Price comparison with GenerateblocksHi Ying. Thank you! On another note: is it possible with Generateblocks to customize bullet points (i.e. different colors for bullet points or icons for bullet points)?
Currently I’m using Shortcodes Ultimate for customized bullet points. However, this requires using the WP paragraph. And if I wish to insert bullet points in containers with a background color, the paragraph box will appear as white.
Forum: Plugins
In reply to: [Calculated Fields Form] Buggy price calculator – conditional statementsThanks a lot! Lifesaver!
Forum: Plugins
In reply to: [WooCommerce] Displaying short description in product shortcodeHi,
Thanks a lot for the reply.
I’m afraid that guide only refers to shop pages rather than products shown via shortcode (please correct me if I’m wrong).
Do you have any suggestion to add description to products that are added via the shortcode (e.g. [products limit=”-1″ columns=”3″ category=”my-category”] on WP-posts)?
Forum: Plugins
In reply to: [WooCommerce] Removing product pages and linking to external source?Frankly not a very useful answer from the woocommerce support. Fortunately I found the solution here: https://stackoverflow.com/questions/49242740/woocommerce-external-affiliate-product-image-and-title-to-external-link-new-t?rq=1
I also added rel=”nofollow” in the code. So in total, the code I added to functions.php of the theme was (remember to create child theme):
remove_action(‘woocommerce_before_shop_loop_item’, ‘woocommerce_template_loop_product_link_open’);
add_action(‘woocommerce_before_shop_loop_item_title’, ‘woocommerce_template_loop_product_link_open’, 15);
add_action(‘woocommerce_before_shop_loop_item’, ‘woocommerce_add_aff_link_open’, 10);
add_action(‘woocommerce_before_shop_loop_item_title’, ‘woocommerce_add_aff_link_close’, 10);function woocommerce_add_aff_link_open(){
$product = wc_get_product(get_the_ID());if( $product->is_type( ‘external’ ) ) {
echo ‘get_product_url() . ‘” class=””>’;
}
}function woocommerce_add_aff_link_close(){
$product = wc_get_product(get_the_ID());if( $product->is_type( ‘external’ ) ) {
echo ‘‘;
}
}function woocommerce_template_loop_product_link_open() {
global $product;if( $product->is_type( ‘external’ ) ) {
$link = apply_filters( ‘woocommerce_loop_product_link’, $product->get_product_url(), $product );
echo ‘‘;
} else {
$link = apply_filters( ‘woocommerce_loop_product_link’, get_the_permalink(), $product );
echo ‘‘;
}
}Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Several shortcodes are brokenI have exactly the same problem. Hope they fix it soon!
Forum: Themes and Templates
In reply to: Icon in menuI added this to Custom.css
[ Moderator note: please wrap code in backticks or use the code button. ]
.home-link-icon a{ background-image:url(https://fiskeolien.dk/wp-content/uploads/2013/08/iconsmall.png) !important; background-repeat:no-repeat !important; background-position:center -47px; text-indent:-9999px; height: 52px; width: 35px; }
And added this CSS class to the menupoint: home-link-icon
But still doesn’t work.
Forum: Fixing WordPress
In reply to: "already installed" – issue with logging into wordpressHey esmi,
Thanks for help. I do have a .htaccess, and this is whats in it“# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress”
Forum: Themes and Templates
In reply to: full article at frontpage and excerpt at blogMy support time just ran out – I just though there would be an easy php twist for this:-)
Forum: Themes and Templates
In reply to: twenty eleven alternativewell, you said that for showing the excerpt on the homepage, i had to modify the content.php file. How, and what exactly is it that i have to modify in the content.php file, so that it shows the excerpt on the twenty eleven theme?
Forum: Themes and Templates
In reply to: twenty eleven alternativehey David,
thanks for the post. But as you may have notest, i’m not very good at coding. How do I modify it, so that it actually shows it? I see that your very active making tutorials on your website, do you have a tutorial for this?