koolkatwebdesigns
Forum Replies Created
-
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, http://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.
Forum: Plugins
In reply to: [Jigoshop eCommerce] Product Order and Products per PageUnfortunately, it is not working. Now I just see all products rather than the products for the category.
Forum: Plugins
In reply to: [Jigoshop eCommerce] migration issuesI have tried this on two sites and both quit migrating orders at 1133 orders and won’t continue. Both sites are staging sites (clones of the original) but I cannot see migrating the live site until the migration issues are resolved.
Forum: Plugins
In reply to: [TAB SLIDE] I would like to be added as an authorHi kikifresh (Gina). That is exactly why I wanted to be an author on this plugin. Its not been updated in something like 2 years. While you would normally not want to do this in an actively maintained plugin as you would lose your changes when the plugin updates, you can modify the ts.css file…
around line 67 look for #tab_title_wrap and make sure the code looks like this:
#tab_title_wrap {
background-color: #3f3299;
color: #fff;
display:block;
font-family: inherit;
font-size: 16px;
font-weight:bold;
letter-spacing: 1px;
margin-left: 1px;
overflow: visible;
position: relative;
-webkit-transform: rotate(90deg); /* Saf3.1+, Chrome */
-moz-transform: rotate(90deg); /* FF3.5+ */
-o-transform: rotate(90deg); /* Opera 10.5 */
transform: rotate(90deg);
zoom: 1;
}The above adds a missing “rotate” which should work in most modern browsers. However, if you are using an old browser like Ie8, this will not work
Thanks for your prompt answer. Just to be clear it is not common issue with display none – I already worked around that by using height 0 and overflow:hidden. When I debug my ipad mini, I actually see 2x in the img src attribute.
thanks.
Forum: Plugins
In reply to: [Regenerate Thumbnails] Failure after upgrading WP to 3.6I don’t know if this will help you but dreamhost suggested I install this plugin https://github.com/getsource/default-to-gd which forces WP to use the GD library instead of Imagick. It seems to have solved this issue for me as well as an image corruption issue.
Forum: Plugins
In reply to: [Posts 2 Posts] Post to User IssueI resolved this so I am posting in case someone else has this issue:
change:
‘connected_items’ => $post
to
‘connected_items’ => $query->post->IDI wanted to provide new info. I added the debug to my config and I see:
Undefined index: wp_the_query in C:\inetpub\wwwroot\SmartEnergy\wp-includes\query.php on line 107 Fatal error: Call to undefined function get_front_page_template() in C:\inetpub\wwwroot\SmartEnergy\wp-includes\template-loader.php on line 26
thanks.
Forum: Plugins
In reply to: Default timestamp on new poststhis has been resolved by setting post_date and post_date_gmt