koolkatwebdesigns
Forum Replies Created
-
It also overrides fonts settings added via add_theme-support, forcing fonts to be preset values rather than what is specified in add_theme_support and the theme stylesheet. The presets all seem to use !important which should never be done. WordPress and Gutenberg should never override a theme’s settings.
Forum: Plugins
In reply to: [WP Job Manager] Job Listing approvalGot it! thanks
Forum: Plugins
In reply to: [Yoast SEO] parent page not showing for blogI resolved it by manipulation the array of breadcrumbs. So, I still think this is an issue but has less importance for me as I was able to code a work around.
Forum: Plugins
In reply to: [PayPal for WooCommerce] PayPal Redirect to checkoutTurned out to be a caching issue
Forum: Plugins
In reply to: [PayPal for WooCommerce] PayPal Redirect to checkoutOne more item on this is that we get a 302 error:
https://www.renehersecycles.com/wc-api/WC_Gateway_PayPal_Express_AngellEYE/?pp_action=set_express_checkout&utm_nooverride=1
Request method:GETForum: Plugins
In reply to: [PayPal for WooCommerce] PayPal Redirect to checkoutI think it only works with a PayPal account at this point.
Forum: Plugins
In reply to: [Block Gallery - Photo Gallery Gutenberg Blocks] change captions with imagesIt would also be great to link the carousel images
This also would fix the issue (now closed) mentioned by @ulir in https://www.ads-software.com/support/topic/adding-search-by-location-name-to-the-advanced-search/.
The problem appears to be related to location rather than location_id being used in the pagination links. It does not relate to any plugins
I don’t know if this is the best solution but I used the “em_paginate” filter to fix this as follows:
add_filter(’em_paginate’,’em_change_pagination’, 10, 1);
function em_change_pagination($string){
if (is_front_page( ) || is_page( get_option(‘dbem_events_page’) ) ) {
$string = str_replace(“location”,”location_id”,$string);
}//$string = “<div class=’em_pagination_link’>”.$string.”</div>”;
return $string;
}The problem only occurs when location is selected (the neighborhood drop down) per the description.
Thanks
Forum: Plugins
In reply to: [Jigoshop eCommerce] QuestionsOne more question on removing actions…
How do I remove the action:
$wp->addAction(‘jigoshop\template\product\before_summary’, array(
$this,
‘productImages’
), 10, 1);In my theme functions?
thanks
Forum: Plugins
In reply to: [Jigoshop eCommerce] Questionsworks! thanks.
Forum: Reviews
In reply to: [Page Builder by SiteOrigin] Update broke siteYes, you are completely right so I updated my review. Here is my issue:
On this site underdevelopment, https://fanzappydemos.com/vakdev/, the update broke the “stretched” row format for the first row. I assumed that I had an error or wrong format somewhere so I removed the first row. However, the new first row had the same issue. This appeared on other pages, too.I rolled back to an earlier version of the plugin which resolved the issue for now
Forum: Plugins
In reply to: [Jigoshop eCommerce] QuestionsI’m sure there is a better way but this is what I tried:
global $post;
$composer = ”;
$product = \Jigoshop\Integration::getProductService()->find($post->ID);
$attributes = $product->getAttributes( );
foreach ($attributes as $attribute) {
if (‘composer’ == $mp3) {
$composer = $attribute->getValue();
return $composer;
break;
}}
}Forum: Plugins
In reply to: [Jigoshop eCommerce] Product Order and Products per PageThat looks much better! Can you please tell me what was changed? Thanks.